* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
  /* :root {
    --font-inter: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-futura: "Futura PT", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-industry: "Industry", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  } */
        :root {
            --text-color: #2A2A2A;
            --border-tag-bg: #F0F0F0;
            --brand-orange: #F5A21D;
            --navbar-color: #232536;
            --footer-copyright: #687997;
            --footer-links: #263052;
            --font-inter: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            --font-futura: "Futura PT", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            --font-industry: "Industry", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        }
        @font-face {
    font-family: "Inter";
    src: url(Inter_28pt-Regular.ttf) format("truetype");
}
@font-face {
    font-family: "Futura PT";
    src: url('/futura-pt_bold-webfont.woff') format('woff2'),
         url('futura-pt_bold-webfont.woff') format('woff');
    font-weight: 700;
}
@font-face {
    font-family: "Industry";
    src: url('/Industry-Bold.woff') format('woff2'),
         url('Industry-Bold.woff') format('woff');
    font-weight: 700;
}
        
        body {
    font-family: var(--font-inter) !important;
    color: var(--text-color);
    line-height: 1.6;
}
        /* tbody, td, tfoot, th, thead, tr {
        font-family: Overpass-Regular;
        } */
span.required-indicator {
    color: red;
}
        
        .next-button{
        border-left: 5px solid #eeaf4a !important;
        padding-left: 24px;
        padding-right: 24px;
        padding-bottom: 10px;
        padding-top: 10px;
        }
        .account-list {
        display: none;
        }
        #toggleAccounts:checked ~ .account-list {
        display: block;
        background: #f9f9f9;
        border-radius: 6px;
        padding: 4px 0;
        }
        .account-list {
            display: none; /* hidden by default */
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            border: 1px solid #ddd;
            box-shadow: 0 2px 6px rgba(0,0,0,0.15);
            min-width: 180px;
            margin: 0;
            padding: 0;
            list-style: none;
            z-index: 1000;
        }

        .account-list li {
            padding: 8px 12px;
            cursor: pointer;
            font-size: 14px;
            color: #333;
        }

        .account-list li:hover {
            background-color: #f5f5f5;
        }

        .account-list li.active {
            font-weight: bold;
            background-color: #e9ecef;
        }

        .current-account {
            display: inline-block;
            padding: 8px 12px;
            font-size: 14px;
            color: #333;
            border: 1px solid #ddd;
            border-radius: 4px;
        }

        /* iframe Form start */
        iframe .table-info
        {
        display:none !important;
        }

        iframe.quickform{
        height:38px  !important;
        }
        .quickform .control
        {
        width:100  !important;
        }

        .quickform td.clearfix.cell.text.form-control-cell {
            display: flex  !important;
        margin:0  !important;
            padding: 0;
            align-items: center; 
        }
        .crmEntityFormView{
            padding: 0 !important;
        }
        .crmEntityFormView fieldset {
            margin: 0;
            
            border: 0 none;
            border: 1px solid #ddd;
            border-radius: 10px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            padding: 0 20px;
            margin: 0;
        }
        html[dir=ltr] .crmEntityFormView .tab .tab-column
        {
            padding: 0;
        }
        .crmEntityFormView .cell {
            padding: 0 10px 10px;
        }
        .crmEntityFormView .tab {
            margin-bottom: 20px;
            width: 100%;
            display: flex;
        }
        legend.section-title {
            /* padding: 19px; */
            margin-top: 18px;
        }
        .readonly {
            border: 1px solid #949494 !important;
            padding: .375rem .75rem !important;
            background: #ececec !important;
        }
        button.btn.btn-default.clearlookupfield {
            border: 1px solid #949494;
        }
        /*Form End*/



        .galaxy-container{
        background: url(~/galaxy.jpg);
        min-height: 400px;
        color: white;
        background-repeat: no-repeat;
        width: 100%;
        background-size: cover;
        padding: 45px;
        }
        .btn-orange-line {
        background: transparent;
        border: 1px solid black;
        border-left: none; /* no left border */
        font-size: 12px;
        font-weight: bold;
        cursor: pointer;
        position: relative;
        color: rgb(0, 0, 0);

        display: inline-flex;        /* keeps text centered */
        align-items: center;         /* vertical centering */
        justify-content: center;     /* horizontal centering */
        white-space: nowrap;         /* prevent text wrapping */
        line-height: 1.2;
        min-height: 44px;
        padding-left: 24px;          /* space for orange line */
        border-radius: 0;  /* rounded only on right side */
        box-sizing: border-box;
        }
        .btn-orange-line-transparent{
        background: transparent;
        border: 1px solid white;
        border-left: none; /* no left border */
        font-size: 12px;
        font-weight: bold;
        cursor: pointer;
        position: relative;
        color: white;
        display: inline-flex;        /* keeps text centered */
        align-items: center;         /* vertical centering */
        justify-content: center;     /* horizontal centering */
        white-space: nowrap;         /* prevent text wrapping */
        line-height: 1.2;
        min-height: 44px;
        padding-left: 24px;          /* space for orange line */
        border-radius: 0;  /* rounded only on right side */
        box-sizing: border-box;
        }
        .btn-orange-line-transparent::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 3px;   /* thickness of orange line */
        height: 100%;
        background: orange;
        }
        .btn-orange-line::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 3px;   /* thickness of orange line */
        height: 100%;
        background: orange;
        }
        .btn-orange-line-transparent:hover{
            background: white;
            color: black;
            text-decoration: none !important;
        }
        .btn-orange-line:hover {
        background: #25293A;
        text-decoration: none !important;
        color: rgb(255, 255, 255);
        }
        input#InsertButton {
        background: transparent !important;
        border: 1px solid #000000;
        border-left: 3px solid orange;
        font-size: 12px;
        font-weight: bold;
        cursor: pointer;
        position: relative;
        color: #000000 !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        line-height: 1.2;
        min-height: 44px;
        padding-left: 24px;
        border-radius: 0;
        box-sizing: border-box;
        margin-left: 25px;
        float: right;
        margin-right: 30px;
        }
        button#UploadButton{
            background-color: rgb(245, 162, 29);
            color: #fff;
            font-weight: bold;
            border-radius: 8px;
            border-color: white;
            padding: 5px 12px 5px 12px;
        }
        .crmEntityFormView {
            text-align: left;
            padding: 50px 0;
        }
        .actions .col-md-6 {
        width: 100%;
        }   
        .btn-group.entity-action-button {
        float: right;
        margin-right: 70px;
        }
        .file-cell.cell {
        margin-left: 30px;
        }
        /*.btn:hover {
            color: var(--bs-btn-hover-color) !important;
            background-color: rgb(245, 162, 29) !important;
            border-color: var(--bs-btn-hover-border-color) !important;
        }*/
        .btn:hover {
           background: white;
            color: black;
            text-decoration: none !important;
        }
        .form-select:focus {
            border-color: #f2a400;
            outline: 0;
            box-shadow: 0 0 0 .01rem rgb(242 164 0);
        }
        button.btn.btn-default.launchentitylookup{
            border: 1px solid #949494;
        }
        .form-control:focus
        {
            border-color: #f2a400;
            box-shadow: 0 0 0 .01rem #f2a400;
        }

        /* Header Styles - Mobile Only */
        .header {
            background-color: var(--navbar-color);
            color: white;
            padding: 0;
            position: relative;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            display: none; /* Hidden on desktop */
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--brand-orange);
            text-decoration: none;
        }

        .menu-toggle {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .cta-button {
            background-color: var(--brand-orange);
            color: white;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background-color: rgb(225, 142, 9);
            transform: translateY(-2px);
        }

        /* Sidebar Navigation */
        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .sidebar {
            position: fixed;
            top: 0;
            left: 0; /* Always visible on desktop */
            width: 240px;
            height: 100%;
            background-color: var(--navbar-color);
            z-index: 1000;
            transition: left 0.3s ease;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        }

        .sidebar-header {
            padding: 2rem 1.5rem 2rem;
            border-bottom: none;
            display: flex;
            justify-content: flex-start;
            align-items: center;
        }

        .sidebar-logo {
            color: white;
            font-size: 1.5rem;
            font-weight: normal;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-dots {
            display: flex;
            gap: 2px;
        }

        .logo-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: var(--brand-orange);
        }

        .logo-dot.small {
            width: 4px;
            height: 4px;
        }

        .sidebar-menu {
            padding: 1rem 0 0 0;
        }

        .sidebar-menu ul {
            list-style: none;
            padding: 0;
        }

        .sidebar-menu li {
            margin-bottom: 0;
        }

        .sidebar-menu a {
            /* font-family: 'futura-pt_bold'; replaced with CSS variable */
    font-family: var(--font-futura);
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
            display: flex;
            align-items: center;
            color: white;
            text-decoration: none;
            padding: 1rem 1.5rem;
            transition: all 0.3s ease;
            border: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            gap: 1rem;
        }

        .sidebar-menu a:hover {
            background-color: var(--brand-orange);
            color: white;
            margin:0 20px;
            text-decoration: none !important;
        }

        .sidebar-menu a.active {
            background-color: var(--brand-orange);
            color: white;
        }

        .menu-icon {
            font-size: 1.2rem;
            width: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .user-info {
            /* font-family: Overpass-Regular; replaced */
    font-family: var(--font-inter);
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
            color: var(--text-color);
            display: flex;
            height: 100%;
            align-items: center;
            border: 1px solid #00000024;
            box-shadow: 0px 2px 4px 0px #A5A3AE4D;
            width: 100%;
            border-radius: 6px;
            gap: 10px;
            padding: 12px 24px;
        }
        

        /* Top Bar */
        .top-bar {
            position: fixed;
            left: 240px; /* Start after sidebar */
            height: 70px;
            background-color: white;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 1rem;
            z-index: 100;
            gap: 24px;
            width: -webkit-fill-available;
            /* top: 1rem; */
        }

        .top-bar-actions {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem;
            /* border: 1px solid var(--border-tag-bg); */
            border-radius: 6px;
            /* background-color: #fafafa; */
            box-shadow: 0px 2px 4px 0px #A5A3AE4D;
            border: 1px solid #00000024;
            height: 100%;
        }

        .action-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.3s ease;
            position: relative;
        }

        .action-icon:hover {
            background-color: var(--border-tag-bg);
        }

        .status-icon {
            background-color: #22c55e;
            color: white;
        }

        .notification-icon {
            background-color: transparent;
            color: var(--text-color);
        }

        .notification-badge {
            position: absolute;
            top: -2px;
            right: -2px;
            background-color: #ef4444;
            color: white;
            font-size: 0.75rem;
            font-weight: bold;
            min-width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .user-avatar {
            background-color: var(--brand-orange);
            color: white;
            font-weight: bold;
            font-size: 0.9rem;
        }

        /* Dropdown Styles */
        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            right: 0;
            top: 50px;
            background-color: white;
            min-width: 200px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border-radius: 8px;
            border: 1px solid var(--border-tag-bg);
            z-index: 1000;
        }

        .dropdown-content.show {
            display: block;
        }

        .dropdown-item {
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            color: var(--text-color);
            border-bottom: 1px solid var(--border-tag-bg);
            transition: background-color 0.3s ease;
        }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        .dropdown-item:hover {
            background-color: var(--border-tag-bg);
        }

        .notification-item {
            padding: 12px 16px;
            border-bottom: 1px solid var(--border-tag-bg);
            font-size: 0.9rem;
        }

        .notification-item:last-child {
            border-bottom: none;
        }

        .notification-item .title {
            font-weight: 600;
            color: var(--text-color);
            margin-bottom: 4px;
        }

        .notification-item .time {
            color: var(--footer-copyright);
            font-size: 0.8rem;
        }

        .notification-header {
            padding: 12px 16px;
            background-color: var(--border-tag-bg);
            font-weight: 600;
            color: var(--text-color);
            border-radius: 8px 8px 0 0;
        }

        /* Main Content */
        .main-content {
            min-height: 92vh;
            padding: 6rem 1rem;
            padding-top: 6rem; /* Account for top bar */
            margin-left: 240px; /* Account for sidebar width */
            width: calc(100% - 240px); /* Take remaining width after sidebar */
        }

        .page-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            margin: 5px 0 5px 0;
        }

        .page-title {
            color: var(--brand-orange);
            font-size: 1rem;
            font-weight: 500;
        }

        .beta-link {
            color: #6366f1;
            text-decoration: underline;
            font-size: 0.9rem;
        }

        .hero-section {
            text-align: center;
            padding: 5px 0;
            max-width: 800px; /* Limit content width for better readability */
            width: 100%;
            margin: 0 auto; /* Center the hero section specifically */
        }

        .hero-section h1 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--text-color);
            font-weight: bold;
            text-transform: uppercase;
        }

        /* Search Bar */
        .search-container {
            max-width: 600px;
            margin: 0 auto 2rem;
            position: relative;
        }

        .search-bar {
            width: 100%;
            padding: 1rem 1rem 1rem 3.5rem;
            border: 2px solid var(--border-tag-bg);
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .search-bar:focus {
            border-color: var(--brand-orange);
        }

        .search-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #6b7280;
            font-size: 1.2rem;
        }

         /* Carousel Styles */
        .carousel-section {
            width: 100%;
            margin: 0 auto 3rem; /* Center the carousel section */
            background-color: #fff;
    box-shadow: 1px 3px 0px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 6px;
        }

        .carousel-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .carousel-title {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--text-color);
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .carousel-wrapper {
            display: flex;
            align-items: center;   /* ensures arrows are always vertically centered */
            justify-content: center;
            position: relative;
            width: 100%;
            }

            .carousel-container {
            position: relative;   /* allow absolute positioning of arrows */
            flex: 1;
            overflow: hidden;
            border-radius: 12px;
         }

        .carousel-track {
            display: flex;
            transition: transform 0.3s ease;
            gap: 1rem;
        }

        .custom-carousel-item {
            display: flex;
            flex: 0 0 calc(45% - 5.75rem);
            background-color: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--border-tag-bg);
            transition: all 0.3s ease;
            cursor: pointer;
            min-height: 180px;
        }

        .custom-carousel-item:hover {
            background-color: var(--navbar-color);
            color: white;
            /*transform: translateY(-5px);
            //box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);*/
        }

        .custom-carousel-item:hover .item-title {
            color: white;
        }

        .custom-carousel-item:hover .item-description {
            color: rgba(255, 255, 255, 0.8);
        }

        .custom-carousel-item:hover .item-icon {
            color: var(--brand-orange);
        }

        .item-icon {
            font-size: 2rem;
            color: var(--brand-orange);
            margin-bottom: 1rem;
            transition: color 0.3s ease;
            margin: 0 15px;

        }

        .item-title {
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--text-color);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }

        .item-description {
            color: var(--footer-copyright);
            font-size: 0.9rem;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .carousel-nav {
            background-color: white;
            color: var(--brand-orange);
            border: 2px solid var(--border-tag-bg);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 6px rgba(0,0,0,0.15);
            z-index: 5;           /* lower than slider so no overlap */
            flex-shrink: 0;       /* prevent arrows from shrinking */
        }

        .carousel-nav:hover {
            background-color: var(--brand-orange);
            color: white;
            border-color: var(--brand-orange);
            transform: scale(1.05);
        }

        .carousel-nav:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .carousel-nav:disabled:hover {
            background-color: white;
            color: var(--brand-orange);
            border-color: var(--border-tag-bg);
        }

        /* Auto-play indicator */
        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }

        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: var(--border-tag-bg);
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .indicator.active {
            background-color: var(--brand-orange);
        }

        /* Footer Styles */
        .footer {
            background-color: white;
            color: var(--text-color);
            padding: 2rem 0;
            margin-left: 240px; /* Account for sidebar width */
            width: calc(100% - 240px); /* Take remaining width after sidebar */
            border-top: 1px solid var(--border-tag-bg);
        }

        .footer-content {
            max-width: auto;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-right: 60px;
        }

        .footer-left {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-copyright {
            color: var(--footer-copyright);
            font-size: 0.9rem;
        }

        .footer-links {
            display: flex;
            gap: 1rem;
        }

        .footer-links a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--brand-orange);
        }

        .footer-right {
            display: flex;
            gap: 1rem;
        }

        .footer-right a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
        }

        .footer-right a:hover {
            color: var(--brand-orange);
        }

        .footer-divider {
            color: var(--footer-copyright);
            margin: 0 0.5rem;
        }
        /* Dashboard containers */
    .dashboard-card { background-color: #fff; box-shadow: 0 4px 6px rgba(0,0,0,0.1); padding: 20px; margin-bottom: 20px; border-radius: 6px; }
    .vertical-section { padding: 15px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); border-radius: 6px; background-color: #fff; height: 100%; display: flex; flex-direction: column; }
    .support-bar { display: flex; margin-bottom: 10px; height: 20px; border-radius: 4px; overflow: hidden; }

    .support-bar .resolved { background-color: green; }
    .support-bar .pending { background-color: red; }

        html[dir=ltr] .crmEntityFormView .tab .tab-column:first-child {
        padding-left: 0;
        margin-right: 20px;
        }

        /* 🔹 Background overlay */
        #loader-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }
        
        /* 🔹 Spinner Animation */
        .spinner {
            border: 10px solid #f3f3f3;
            border-top: 10px solid #F5A21D; /* Primary color */
            border-radius: 50%;
            width: 150px;
            height: 150px;
            animation: spin 1s linear infinite;
            margin-bottom: 10px;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* 🔹 Text below spinner */
        .loader-text {
            font-size: 18px;
            color: #333;
            text-align: center;
            font-weight: 500;
        }
        
        /* Optional: dark mode variant */
        .dark-mode #loader-overlay {
            background: rgba(0, 0, 0, 0.6);
        }
        
        .dark-mode .loader-text {
            color: #fff;
        }

        .crmEntityFormView, .entitylist, .modal-content, .popover-content {
        background-color: #FFFFFF;
        color: #000000;
        border: 0px solid #f2f2f2;
        }

        iframe#QuickviewControl1758812617929 {
        height: 85px !important;
        }

        html[dir=ltr] .crmEntityFormView .cell.crmquickform-cell:first-child {
        border: 0px;
        width: 50%;
         padding-bottom: 0;
        }

        a.nav-link:focus {
        background-color: var(--brand-orange);
        color: white;
        margin: 0 20px;
        text-decoration: none !important;
        }

        a.btn.btn-primary.float-end.action.create-action {
        background: transparent;
        border: 1px solid black;
        border-left: none; /* no left border */
        font-size: 12px;
        font-weight: bold;
        cursor: pointer;
        position: relative;
        color: rgb(0, 0, 0);
        display: inline-flex;        /* keeps text centered */
        align-items: center;         /* vertical centering */
        justify-content: center;     /* horizontal centering */
        white-space: nowrap;         /* prevent text wrapping */
        line-height: 1.2;
        min-height: 44px;
        padding-left: 15px;          /* space for orange line */
        border-radius: 0;  /* rounded only on right side */
        box-sizing: border-box;
        border-left: 5px solid #eeaf4a !important;
        margin-right: 30px;
        padding: 10px 20px 10px 24px;
        }
        a.btn.btn-primary.float-end.action.create-action:hover {
        background: #25293A;
        text-decoration: none !important;
        color: rgb(255, 255, 255);
        }

        .crmEntityFormView .actions .col-md-6.clearfix { 
        text-align: right;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-end;
        }

        div#QuickviewControl1758812617929 {
        border: 0px;
        }
        .tab-column fieldset {
        /*padding-top: 10px; applied by vishal commented by ali */
        padding-bottom: 0px;
        border-width: 0 0;
        margin-top: 10px;
        line-height: 2.0 !important;
        }
        input#NextButton {
        padding: 10px 24px 10px 24px;
        }
        
        div[data-name="tab_1"].tab.clearfix fieldset {
        /* Your styles here */
        padding-left: 0;
        }

        input#PreviousButton {
            display: none;
        }

        div#EntityFormView {
        border: 1px solid #ccc;
        border-radius: 8px;
        padding: 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        /* Dark Theme */
        body.dark-theme,
        body.dark-theme * {
        background-color: #121212 !important;
        color: #e0e0e0 !important;
        border-color: #444 !important;
        }

        /* Optional: specific tweaks */
        body.dark-theme input,
        body.dark-theme textarea,
        body.dark-theme select {
        background-color: #1e1e1e !important;
        color: #ffffff !important;
        border: 1px solid #555 !important;
        }

        body.dark-theme label {
        color: #ccc !important;
        }

        body.dark-theme table,
        body.dark-theme td,
        body.dark-theme th {
        background-color: #1c1c1c !important;
        color: #e0e0e0 !important;
        border: 1px solid #444 !important;
        }

        body.dark-theme .entity-form {
        background-color: #1a1a1a !important;
        border-color: #444 !important;
        }

        /* Optional: links */
        body.dark-theme a {
        color: #90caf9 !important;
        }
        .dynamic-row button {
            display: inline-block !important;
            margin: 10px;
        }

 /*       .btn-primary {
            background-color: oklab(79.444% 0.0551 0.1617) !important;
            color: white !important;
        }
*/
        .btn-danger {
            background-color: #dc3545 !important;
            color: white !important;
        }
        p {
        font-family: var(--font-inter);
        font-weight: 400;
        font-size: 16px;
        color: #000000;
        }
        button.btn.btn-primary.add-btn {
        margin: 24px 0 0 0;
        }
        button.btn.btn-danger.delete-btn {
            margin: 24px 0 0 0;
        }
        iframe#QuickviewControl1761058808397 {
        height: 116px ! IMPORTANT;
        }
        iframe#QV_PartnerContact {
         height: 80px ! IMPORTANT;
         }
        input#vsi_brmnumber {
        padding-top: 0px;
        }
        .crmEntityFormView .section {
        table-layout: auto;
        width: 100%;
         }
        /* fieldset[aria-label="Terms and Conditions"] {
        padding: 0 40px 0 40px !important;
        }*/
        input#address1_telephone1 {
        padding-top: 0px;
        padding-bottom: 0px;
        }
        #QV_PartnerContact fieldset table.section tbody tr:nth-of-type(1) td  {
            padding: 0px;
        }
        #QuickviewControl1761058808397 fieldset table.section tbody tr:nth-of-type(1) td  {
            padding: 0px;
        }
        p#length_error_message {
            display: none;
        }
        /*Brust iframes*/
        label[for^="QuickviewControl"] {
        display: none !important;
        }
        label[for="QV_PartnerContact"] {
        display: none !important;
        }
        .quickform[data-formname="Requestor Contact for Portal"],.quickform[data-formname="Requestor Contact"] {
        height: Auto !important;
        }
        .quickform[data-formname="Partner quick view for portal"],.quickform[data-formname="Partner quick view"] {
        height: 80px !important;
        /* padding-top: 8px; */
        }
        .quickform[data-formname="Technical Contact"] {
        height: 135px !important;
        }
        .quickform[data-formname="Requestor Contact"] {
        padding-top: 10px;
        height: 73px !important;
        }
        .quickform[data-formname="Partner Contact"] {
        height: 160px !important;
        }
         [id^="QuickviewControl"] fieldset {
        box-shadow: none !important;
        }
        div.entity-form.crmEntityFormView {
        border: none !important;
        box-shadow: none !important;
        }
        .entity-form.crmEntityFormView table.section tbody tr:first-of-type:has(> td.clearfix.cell:empty) {
        display: none !important;
        }
        /* End */
        /*Certus Co-Location Setup For Portal iframes*/
        fieldset[aria-label="Info"] {
        padding: 20px 20px !important;
        }
        h2.tab-title {
        display: none;
        }
        div.tab.clearfix[data-name="tab_2"] {
        display: none;
        }
        label#lastname_label {
        width: max-content !important;
        }
        input#mobilephone,
        input#lastname,
        input#firstname {
            padding: 0;
        }
        fieldset:empty {
  display: none !important;
}
fieldset[aria-label="Add New Mobile Terminated IP Address(es)"],
fieldset[aria-label="Modify Existing Mobile Terminated Direct IP Address(es)"],
fieldset[aria-label="Remove Existing Mobile Terminated Direct IP Address(es)"] {
  display: none !important;
}
ul.nav.nav-tabs.nav-account {
    margin-top: 50px;
    margin-left: 300px;

}
/*Generic*/

.typ-breadcrumb {
  font-family: var(--font-inter);
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
}

/* Page heading : Futura PT Bold (30px/25px) */
.typ-page-heading {
  font-family: var(--font-futura);
  font-size: 30px;
  line-height: 25px;
  font-weight: 700;
}

/* Tile heading : Futura PT Bold (18px/20px) */
.typ-tile-heading, .field-label {
  font-family: var(--font-futura);
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
}

/* Title description : Inter Regular (13px/20px) */
.typ-title-description {
  font-family: var(--font-inter);
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
}

/* Form heading : Inter Bold (24px/30px) H3 */ 
.section-title {
  font-family: var(--font-inter) !important;
  font-size: 24px !important;
  line-height: 30px !important;
  font-weight: 700 !important;
}

/* Text field description : Inter Regular (16px/30px) */
.typ-field-description {
  font-family: var(--font-inter);
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
}

/* Text field labels : Inter Regular (14px/20px) */
.typ-field-label {
  font-family: var(--font-inter);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

/* CTA / Links : Industry Bold (15px/auto) */
.typ-cta-link {
  font-family: var(--font-industry);
  font-size: 15px;
  line-height: normal; /* auto */
  font-weight: 700;
}

/* Login Forgot password : Inter Bold (15px/auto) */
.typ-login-forgot {
  font-family: var(--font-inter);
  font-size: 15px;
  line-height: normal; /* auto */
  font-weight: 700;
}

/* Footer : Industry Bold (15px/22px) */
.typ-footer, .footer-links, .footer-copyright, .footer-right {
  font-family: var(--font-industry);
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
}

/* Instructions / Stepper : Inter Regular (15px/22px) */
.typ-instructions {
  font-family: var(--font-inter);
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
}

/* Toast message : Inter Regular (15px/22px) */
.typ-toast {
  font-family: var(--font-inter);
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
}

/* Free text : Inter Regular (15px/22px) */
.typ-free-text {
  font-family: var(--font-inter);
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
}

#vsi_accepttermsandconditions_label,
#cr643_accepttermsandconditions1_label,
#vsi_acceptprerequisiteshavebeenmade_label
{
    font-weight: 400 !important;
}


        /* Mobile Responsive */
        @media (max-width: 768px) {
            .header {
                display: block; /* Show header on mobile */
            }

            .top-bar {
                display: none; /* Hide top bar on mobile */
            }

            .sidebar-overlay.active {
                opacity: 1;
                visibility: visible;
            }

            .sidebar {
                left: -300px; /* Hidden by default on mobile */
            }

            .sidebar.active {
                left: 0;
            }

            .sidebar-close {
                display: block; /* Show close button on mobile */
            }

            .sidebar-header {
                padding: 1.5rem;
            }

            .sidebar-logo {
                font-size: 1.25rem;
            }

            .main-content {
                margin-left: 0; /* Reset margin on mobile */
                width: 100%; /* Full width on mobile */
                padding: 2rem 1rem;
                padding-top: 6rem; /* Account for fixed header */
                min-height: 100%;

            }

            .footer {
                margin-left: 0; /* Reset footer margin on mobile */
                width: 100%; /* Full width on mobile */
                margin-left: 240px;
                width: calc(100% - 240px);
            }

            .footer-content {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
                padding: 0 1rem;
            }

            .footer-links {
                justify-content: center;
            }

            .footer-right {
                justify-content: center;
            }

            .hero-section {
                max-width: none; /* Remove max-width constraint on mobile */
            }

            .header-content {
                padding: 1rem;
            }

            .carousel-container {
                padding: 0 1rem;
            }

            .custom-carousel-item {
                flex: 0 0 250px;
            }

            .carousel-nav {
                display: none;
            }

            .search-container {
                margin: 0 auto 2rem;
            }

            .hero-section h1 {
                font-size: 2rem;
            }

            .carousel-title {
                font-size: 1.5rem;
            }
            html[dir=ltr] .crmEntityFormView .tab .tab-column:first-child {
            padding-left: 0;
            margin-right: 0px !important;
            }
            .crmEntityFormView .tab {
            flex-direction: column;
            }
            ul.nav.nav-tabs.nav-account {
            margin-top: 0px;
            margin-left: 0px;
        }
        }
        /* === Global Dark Theme Reset === */
        body.dark-theme,
        body.dark-theme * {
        background-color: #121212 !important;
        color: #e0e0e0 !important;
        border-color: #444 !important;
        }

        /* === Specific Components === */
        body.dark-theme .entity-form,
        body.dark-theme .tab,
        body.dark-theme .tab-column,
        body.dark-theme .section,
        body.dark-theme .form-control-cell,
        body.dark-theme table,
        body.dark-theme td,
        body.dark-theme th {
        background-color: #1a1a1a !important;
        color: #e0e0e0 !important;
        border: 1px solid #333 !important;
        }

        /* === Input Fields === */
        body.dark-theme input[type="text"],
        body.dark-theme textarea,
        body.dark-theme select {
        background-color: #1e1e1e !important;
        color: #ffffff !important;
        border: 1px solid #555 !important;
        }

        /* === Labels === */
        body.dark-theme label,
        body.dark-theme .field-label {
        color: #ccc !important;
        }

        /* === Validators / Warnings === */
        body.dark-theme .validators span {
        color: #f44336 !important; /* Material Red */
        }

        /* === Links === */
        body.dark-theme a {
        color: #90caf9 !important; /* Light Blue */
        }

        /* === iframe Container Overlay Hack === */
        body.dark-theme .fullPageEditorContainer {
        position: relative;
        }

        body.dark-theme .fullPageEditorContainer::before {
        content: "";
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background-color: rgba(18, 18, 18, 0.8); /* overlay */
        pointer-events: none;
        z-index: 10;
        }


.control input, .control a:read-only, .control input:read-only, .control textarea , .control select , .control textarea{

    color: #A7A7A7 !important;
    font-family: var(--font-inter) !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 30px !important;
    border-radius: 8px !important;
    border: 1px solid #DBDADE !important;
    padding: 12px 16px !important;
    align-items: center !important;
    margin: 10px 0px 0 0 !important;
}


input:disabled, input:read-only, textarea:disabled, textarea:read-only , .control a:read-only{
    background: #F1F1F2 !important;
}




/* EXCLUDE only readonly-only inside #formContainer */
#formContainer input[readonly]:not(:disabled),
#formContainer input:read-only:not(:disabled),
#formContainer textarea[readonly]:not(:disabled),
#formContainer textarea:read-only:not(:disabled),
.modal input[readonly]:not(:disabled),
.modal input:read-only:not(:disabled),
.modal textarea[readonly]:not(:disabled),
.modal textarea:read-only:not(:disabled),
.modal a:read-only:not(:disabled) 
{
    background: unset !important;
}

fieldset:has(#vsi_brmnumber) {
    /* your styles */
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.0)  !important; 
}


