body{
    font-family: 'Poppins', sans-serif;
}
/*navigation bar*/
nav {
    
    position: fixed;
            top: 0;
            z-index: 99;
            width: 100%;
            transition: all 0.5s ease;
        }

        .nav-scroller {
            background: #ffffff;
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
        }

        nav .search-location-btn-container{
          background: #00453d;
          display: flex;
          justify-content: flex-end;
        }

        nav .wrapper {
            position: relative;
            max-width: 1700px;
            padding: 0px 30px;
            height: 90px;
            margin: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        nav .wrapper .logo {
            width: 245px;
            height: auto;
        }

        nav .wrapper .logo img {
            width: 100%;
            height: 100%;
            
        }
        
        .navbar {
            margin-top: 80px;
            padding: 0;
        }


.header.header .logo-img {
    max-width: 400px;
    max-height: 83px;
}
        


.details-c a{
    align-items: center;
    color: white !important;
}

.details-c p{
    margin-bottom: 0;
}


        
        
        @media (max-width: 1324px) {
            nav .wrapper .logo img {
                width: auto;
        }
        
        
}

/* Simpler Corrected Selector */
.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #b0d4d0;
    font-size: 1rem;
    pointer-events: none;
}

        nav .wrapper .nav-links {
            display: inline-flex;
            margin-bottom: 0;
            list-style: none;
        }

        nav .nav-links li {
            list-style: none;
        }

        .navlink{
            font-weight: 700;
        }

        nav .nav-links .nav-link {
            color: black !important;
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            padding: 9px 15px;
            border-radius: 5px;
            transition: all 0.5s ease;
        }

        nav .nav-links .nav-link-button {
            align-items: center;
            background-clip: padding-box;
            background-color: #00453d;
            border: 1px solid transparent;
            box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
            box-sizing: border-box;
            color: #fff;
            cursor: pointer;
            display: inline-flex;
            font-size: 18px;
            font-weight: 600;
            justify-content: center;
            line-height: 1.25;
            margin: 0;
            min-height: 3rem;
            padding: calc(.875rem - 1px) calc(1.5rem - 1px);
            position: relative;
            text-decoration: none;
            transition: all 250ms;
            user-select: none;
            -webkit-user-select: none;
            touch-action: manipulation;
            vertical-align: baseline;
            width: auto;
            border-radius: 10px;
            margin-left: 30px;
        }

        nav .nav-links .nav-link-button:hover,
        nav .nav-links .nav-link-button:focus {
            background-color: #1e4c32;
            box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
        }

        nav .nav-links .nav-link-button i {
            margin-left: 10px;
        }

        nav .nav-links .mobile-item {
            display: none;
        }

        nav .nav-links .drop-menu {
            position: absolute;
            background: #fff;
            width: 180px;
            line-height: 45px;
            top: 85px;
            opacity: 0;
            visibility: hidden;
            box-shadow: 0 6px 10px rgba(0,0,0,0.15);
        }

        nav .nav-links li:hover .drop-menu,
        nav .nav-links li:hover .mega-box {
            transition: all 0.3s ease;
            top: 70px;
            opacity: 1;
            visibility: visible;
        }

        nav .drop-menu li a {
            width: 100%;
            display: block;
            padding: 0 0 0 30px;
            font-weight: 400;
            border-radius: 0px;
        }

        nav .mega-box {
            position: absolute;
            left: 0;
            width: 100%;
            padding: 0 30px;
            top: 85px;
            opacity: 0;
            visibility: hidden;
        }

        nav .mega-box .content {
            background: #fff;
            padding: 25px 20px;
            display: flex;
            width: 100%;
            justify-content: space-between;
            box-shadow: 0 6px 10px rgba(0,0,0,0.15);
        }

        nav .mega-box .content .row {
            width: calc(25% - 30px);
            line-height: 45px;
        }

        nav .content .row img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        nav .content .row header {
            color: #1e1101;
            font-size: 20px;
            font-weight: 500;
        }

        nav .content .row .mega-links {
            margin-left: -40px;
            border-left: 1px solid rgba(255,255,255,0.09);
        }

        nav .row .mega-links li {
            padding: 0 20px;
        }

        nav .row .mega-links li a {
            padding: 0px;
            padding: 0 20px;
            color: #1e1101;
            font-size: 17px;
            display: block;
        }

        .row .mega-links li a:hover {
            color: #1e1101;
        }

        nav .wrapper .btn {
            color: #000;
            font-size: 20px;
            cursor: pointer;
            display: none;
        }

        nav .wrapper .btn.close-btn {
            position: absolute;
            right: 30px;
            top: 10px;
        }

        nav input {
            display: none;
        }

        nav .login-btn {
            background-color: #ff8b00;
            color: #fff !important;
            font-weight: 600 !important;
        }

        /* Mobile Responsive Styles */
        @media screen and (max-width: 1317px) {
            nav .wrapper {
                max-width: 100%;
                padding: 0 20px;
            }
            
            nav .wrapper .logo {
                width: 200px;
            }
            
            nav .nav-links .nav-link {
                font-size: 15px;
                padding: 8px 16px;
            }
            
            nav .nav-links .nav-link-button {
                font-size: 16px;
                margin-left: 20px;
                padding: calc(.75rem - 1px) calc(1.25rem - 1px);
            }
        }
        
        @media screen and (max-width: 1200px) {
            nav .wrapper {
                max-width: 100%;
                padding: 0 7px;
            }
            
            nav .wrapper .logo {
                width: 190px;
            }
            
            nav .nav-links .nav-link {
                font-size: 14px;
                padding: 8px 8px;
            }
            
            nav .nav-links .nav-link-button {
                font-size: 16px;
                margin-left: 0px;
                padding: calc(.75rem - 1px) calc(1.25rem - 1px);
            }
        }
        
        @media screen and (min-width: 970px) {
            nav .wrapper .nav-mobile-logo{
                display: none;
            }
        }

        @media screen and (max-width: 970px) {
            nav .wrapper .btn {
                display: block;
            }
            
            nav .wrapper .nav-links {
                position: fixed;
                height: 100vh;
                width: 100%;
                max-width: 100%;
                top: 0;
                left: -100%;
                background: #fff;
                display: block;
                padding: 50px 10px;
                line-height: 50px;
                box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
                transition: all 0.3s ease;
            }
            
            nav .wrapper .nav-links.active {
                left: 0;
            }
            
            nav .wrapper .nav-links li {
                margin: 15px 10px;
            }
            
            nav .wrapper .nav-links li a {
                display: block;
                color: #000;
                text-decoration: none;
                line-height: 50px;
                font-size: 20px;
                font-weight: 500;
                padding: 0 20px;
                border-radius: 5px;
                transition: all 0.3s ease;
            }
            
            nav .nav-links li a:hover {
                background: #f0f0f0;
            }
            
            nav .nav-links .nav-link-button {
                display: block;
                margin: 20px 10px 0;
                text-align: center;
                line-height: 50px;
                background-color: #00453d;
                color: #fff;
                border-radius: 10px;
                font-size: 18px;
                font-weight: 600;
                transition: all 0.3s ease;
            }
            
            nav .nav-links .nav-link-button:hover {
                background-color: #1e4c32;
            }
            
            nav .nav-links .drop-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                padding-left: 20px;
                width: 100%;
                max-height: 0;
                overflow: hidden;
                box-shadow: none;
                transition: all 0.3s ease;
            }
            
            nav .nav-links .mobile-item {
                display: block;
            }
            
            .mobile-item .drop-menu {
                margin: 10px 20px;
            }
            
            .mobile-item .drop-menu li {
                margin: 0;
            }
            
            .mobile-item .drop-menu li a {
                border-radius: 5px;
                font-size: 18px;
            }
            
            nav .mega-box {
                position: static;
                max-height: 0;
                opacity: 0;
                visibility: hidden;
                overflow: hidden;
                transition: all 0.3s ease;
            }
            
            nav .mega-box .content {
                box-shadow: none;
                flex-direction: column;
                padding: 20px 20px 0 20px;
            }
            
            nav .mega-box .content .row {
                width: 100%;
                margin-bottom: 15px;
                border-top: 1px solid rgba(255,255,255,0.08);
            }
            
            nav .mega-box .content .row:nth-child(1),
            nav .mega-box .content .row:nth-child(2) {
                border-top: 0px;
            }
            
            nav .content .row .mega-links {
                border-left: 0px;
                padding-left: 15px;
            }
            
            nav .row .mega-links li {
                margin: 0;
            }
            
            .row .mega-links li a {
                font-size: 17px;
                line-height: 45px;
            }
            
            nav .wrapper .nav-mobile-logo  {
                width: 230px;
                height: auto;
            }
            
            nav .wrapper .nav-mobile-logo  img{
                width: 100%;
                height: auto;
                object-fit: contain;
            }
        }

        @media screen and (max-width: 768px) {
            nav .wrapper {
                height: 70px;
                padding: 0 15px;
            }
            
            nav .wrapper .logo {
                width: 160px;
            }
            
            nav .wrapper .nav-links {
                max-width: 280px;
                padding: 65px 10px 30px;
            }
            
            nav .wrapper .nav-links li a {
                font-size: 18px;
                line-height: 45px;
            }
            
            
            
            nav .nav-links .nav-link-button {
                font-size: 16px;
                line-height: 45px;
            }
        }

        @media screen and (max-width: 480px) {
            nav .wrapper {
                height: 60px;
                padding: 0 10px;
            }
            
            body {
                padding-top: 60px;
            }
            
            nav .wrapper .logo {
                width: 140px;
            }
            
            nav .wrapper .nav-links {
                max-width: 100%;
                width: 100%;
                padding: 20px 10px;
            }
            
            nav .wrapper .nav-links li {
                margin: 10px 5px;
            }
            
            nav .wrapper .nav-links li a {
                font-size: 16px;
                line-height: 40px;
                padding: 0 15px;
            }
            
            nav .nav-links .nav-link-button {
                font-size: 16px;
                line-height: 40px;
                margin: 15px 5px 0;
            }
            
            nav .wrapper .btn {
                font-size: 18px;
            }
        }

/*navigation bar*/

/* --- 1. Page Background (Context) --- */
body {
    background-color: #e8f3f1; /* Your requested light background */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- 2. The Main Container --- */
.master-breadcrumb {
    position: relative;
    z-index: 1;
    margin-top: 50px;
    display: flex;
    justify-content: center; /* Centers the breadcrumb */
}

/* --- 3. The Breadcrumb Bar --- */
.master-breadcrumb .breadcrumb {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 2px 0px;
    margin-bottom: 0;
    list-style: none;
    background: #e9ecef;
    
}

/* --- 4. The Items --- */
.master-breadcrumb .breadcrumb-item {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* --- 5. The Separator (Custom Chevron) --- */
/* We remove the default slash and use a chevron arrow */
.master-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›"; 
    color: #b0caca; /* A muted version of your teal for separators */
    padding: 0 12px;
    font-size: 18px;
    line-height: 1;
    float: none; /* Reset Bootstrap float if present */
}

/* --- 6. The Links (Interactive State) --- */
.master-breadcrumb .breadcrumb-item a {
    color: #00453d; /* Deep Teal */
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

/* --- 7. Hover Effect (The "Pop") --- */
.master-breadcrumb .breadcrumb-item a:hover {
    background-color: #00453d; /* Dark background on hover */
    color: #00fdeb; /* Bright Cyan text on hover */
    transform: translateY(-2px); /* Slight lift */
    box-shadow: 0 4px 10px rgba(0, 69, 61, 0.3);
}

/* --- 8. The Active/Current Page (Last Item) --- */
.master-breadcrumb .breadcrumb-item.active {
    color: #6c8a87; /* Muted teal for the non-clickable current page */
    padding: 8px 16px;
    cursor: default;
}









/* General container for the top bar */
.search-location-btn-container {
    background: #00453d;
    font-family: 'Poppins', sans-serif;
    display: flex;
   
    align-items: center;
    padding: 10px 8.5rem; /* Adjusted padding for better scaling */
    gap: 2rem; /* A smaller, flexible gap for when items might wrap */
    flex-wrap: wrap; /* Allow items to wrap if screen is very narrow */
    justify-content: space-between !important;
}

/* Contact details container */
.details {
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 20px; /* Space between email and phone */
    flex-shrink: 0; /* Prevents this container from shrinking */
   
}

.details p,
.details a {
    color: white;   
    margin: 0;
    text-decoration: none;
    white-space: nowrap; /* Prevents text from breaking into a new line */
}

.details i{
    color: #00fdeb;
}

/* Container for the search input and its icon */
.search-location-btn-container .new-search-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: auto;
}

/* Styling for the search icon */
.search-location-btn-container .search-icon {
    position: absolute;
    left: 15px;
    color: #b0d4d0;
    font-size: 1rem;
    pointer-events: none;
}

/* The search input field */
.search-location-btn-container .header-search-input {
    display: block;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid #005f54;
    border-radius: 50px;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    color: #ffffff;
    font-size: 1rem;
    width: 300px; /* Base width for desktop */
    max-width: 100%; /* Ensures it doesn't overflow its container */
    transition: all 0.3s ease-in-out;
}

.search-location-btn-container .header-search-input::placeholder {
    color: #b0d4d0;
    opacity: 1;
}

.search-location-btn-container .header-search-input:focus {
    outline: none;
    border-color: #1a9a8c;
    background-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 0 3px rgba(26, 154, 140, 0.3);
}

/* The dropdown container for search results */
.search-location-btn-container .location-search-results-dropdown {
    display: none;
    position: absolute;
    top: 120%;
    right: 0;
    width: 100%;
    min-width: 350px; /* Base min-width for desktop */
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 450px;
    overflow-y: auto;
    padding: 0.5rem;
    text-align: left;
}

.search-location-btn-container .new-search-container:focus-within .location-search-results-dropdown {
    display: block;
}

/* --- Dropdown Content Styles (Unchanged) --- */
.search-location-btn-container .location-search-results-dropdown h3 {
    margin: 0;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: sticky;
    top: -8px;
    background: #fff;
    z-index: 10;
}

.search-location-btn-container .location-search-results-dropdown h3 a {
    color: inherit;
    text-decoration: none;
}

.search-location-btn-container .location-search-results-dropdown ul {
    list-style: none;
    padding: 0 0 0.5rem 0;
    margin: 0;
}

.search-location-btn-container .location-search-results-dropdown li a {
    display: block;
    padding: 0.6rem 1.5rem;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    /* Updated transition to animate all changes smoothly */
    transition: all 0.25s ease-in-out; 
    font-size: 0.95rem;
}

.search-location-btn-container .location-search-results-dropdown li a:hover {
    background-color: #f0f7f6;
    color: #00453d;
    /* Adds a slight push to the right and a subtle grow effect */
    transform: translateX(5px) scale(1.02); 
}

/* --- Dropdown Scrollbar Styles (Unchanged) --- */
.search-location-btn-container .location-search-results-dropdown::-webkit-scrollbar {
    width: 8px;
}

.search-location-btn-container .location-search-results-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.search-location-btn-container .location-search-results-dropdown::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.search-location-btn-container .location-search-results-dropdown::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}


.search-location-btn-container .location-search-results-dropdown h3{
    border-radius: 8px;
    background: linear-gradient(to right, #787c7c, #00453d); 
}

.search-location-btn-container .location-search-results-dropdown li{
    margin: 4px;
    border-radius: 8px;
    border: 1px solid #00fdeb;
}

section#main-body {
    margin: 0;
    padding: 55px 40px;
    min-height: 350px;
    background-color: #ffffff;
}

@media (max-width:800px) {
    section#main-body {
    margin: 0;
    padding: 55px 0px;
    min-height: 350px;
    background-color: #ffffff;
}
}

#order-standard_cart label, #order-standard_cart p.domain-renewal-desc, .service-renewals .div-renewal-period-label {
    margin-right: 10px;
    font-weight: 500 !important;
    font-size: 13px;
    color: #00453d;
}

#order-standard_cart .sub-heading span, #order-standard_cart .sub-heading-borderless span {
    display: inline-block;
    position: relative;
    padding: 0 17px;
    top: -11px;
    font-size: 16px;
    color: #00453d !important;
    border-radius: 20px;
}


/* whmcs */

#order-standard_cart .cart-body {
    float: right;
    width: 100%;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}









/* Sidebar Container styling */
.country-filter-sidebar {
    background-color: #e8f3f1; /* Light Mint background */
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 69, 61, 0.05);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-width: 350px;
    position: sticky;
    top: 180px;
    height: calc(100vh - 200px);
    overflow-y: auto;
}

/* Heading styling */
.country-filter-sidebar h4 {
    color: #111111;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border-bottom: 2px solid #00453d;
    display: inline-block;
    padding-bottom: 5px;
}

/* --- NEW: Grid Wrapper --- */
.country-filter-sidebar .country-btn-grid {
    display: grid;
    gap: 8px;
    width: 100%;
    align-items: start;
}

/* --- UPDATED: Button Styling --- */
.country-filter-sidebar .filter-btn {
    background-color: #ffffff;
    color: #00453d;
    border: 1px solid #00453d;
    border-radius: 50px; /* Pill shape */
    
    /* Layout Logic for Text Visibility */
    width: 100%; /* Force button to fill the grid cell */
    min-height: 100%; /* Ensures buttons in the same row are equal height */
    padding: 8px 10px; /* Reduced side padding to give text more room */
    margin: 0; /* Reset margin, as Grid 'gap' handles spacing now */
    
    /* Text Handling */
    white-space: normal; /* Allows text to wrap to a second line if needed */
    line-height: 1.2; /* Tighter line height for wrapped text */
    text-align: center;
    display: flex; /* Flexbox allows us to center the text vertically */
    align-items: center;
    justify-content: center;
    
    font-size: 0.8rem; /* Slightly smaller font to fit long names */
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 4px rgba(0, 69, 61, 0.1);
    cursor: pointer;
    outline: none;
    gap: 5px;
}

/* Hover State */
.country-filter-sidebar .filter-btn:hover {
    background-color: #00fdeb;
    color: #00453d;
    border-color: #00fdeb;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 253, 235, 0.4);
    z-index: 2; /* Ensures hover glow is on top */
}

/* Active/Selected State */
.country-filter-sidebar .filter-btn.active {
    background-color: #00453d !important;
    color: #00fdeb !important;
    border-color: #00453d !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

/* Focus state */
.country-filter-sidebar .filter-btn:focus {
    box-shadow: 0 0 0 3px rgba(0, 253, 235, 0.5);
}

/* Wrapper to hold button and dropdown together */
.country-btn-wrapper {
    position: relative;
    display: flex;       /* Changed from inline-block */
    flex-direction: column; /* Stack button on top of dropdown */
    width: 100%;
}

/* The Dropdown Container */
.city-dropdown {
    display: none; 
    position: relative; /* CHANGED: Was absolute */
    top: auto;          /* Reset top */
    left: auto;         /* Reset left */
    width: 100%;        /* Match the button width */
    min-width: auto;    /* Remove fixed min-width to fit grid */
    
    background-color: #00453d;
    border: 1px solid #00fdeb;
    border-radius: 4px;
    padding: 10px;
    margin-top: 5px;    /* Space between button and list */
    
    /* Remove shadow that implies floating, usually cleaner for accordions */
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2); 
    z-index: 1;
}

/* Show dropdown when the wrapper has the 'active-country' class */
.country-btn-wrapper.active-country .city-dropdown {
    display: block;
}

/* Radio Button Styling */
.city-option {
    display: block;
    margin-bottom: 8px;
    color: #e8f3f1;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.city-option:last-child {
    margin-bottom: 0;
}

.city-option:hover {
    color: #00fdeb;
}

/* Customizing the Radio Input */
.city-option input[type="radio"] {
    accent-color: #00fdeb; /* Modern browsers support this for color */
    margin-right: 8px;
    vertical-align: middle;
}

.country-btn-wrapper.show-dropdown .city-dropdown {
    display: block;
}

/* Ensure the button looks active */
.country-btn-wrapper.active-country .filter-btn {
    background-color: #00453d;
    color: #00fdeb;
    border-color: #00fdeb;
}




/* --- 1. Reset Table Structure to CSS Grid --- */
.product-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px; /* Creates space between the cards */
    background: transparent !important;
    border: none !important;
}

/* Hide the default HTML table header */
.product-table thead {
    display: none;
}

/* --- 2. The Card Container (The Row) --- */
.product-table tbody tr.country-row {
    display: grid;
    grid-template-columns: 32% repeat(4, 1fr) 20%;
    grid-template-rows: auto auto; 
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden; /* Ensures the green background stays inside corners */
    align-items: center;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    height: 137px;
}

/* --- 3. Cell Reset --- */
.product-table td {
    padding: 10px;
    border: none !important;
    background: transparent;
    
}

/* --- 4. LEFT GREEN SECTION (Country, City, Product) --- */

/* Target the first 3 columns and force them into the first Grid Column */
.product-table td:nth-child(1),
.product-table td:nth-child(2),
.product-table td:nth-child(3) {
    grid-column: 1; 
    background-color: #00453d; /* Dark Green */
    color: #e8f3f1; /* Light text */
    padding-left: 20px;
}

/* Country: Top Left */
.product-table td:nth-child(1) {
    grid-row: 1;
    align-self: stretch;
    font-size: 0.9rem;
    padding-bottom: 0;
}

/* City: Top Right (of the green box) */
.product-table td:nth-child(2) {
    grid-row: 1;
    justify-self: end;
    align-self: end;
    padding-right: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
    padding-bottom: 0;
}

/* Product Name: Bottom Left (Big Text) */
.product-table td:nth-child(3) {
    grid-row: 2;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.2;
    padding-bottom: 25px;
    position: relative;
    align-self: start;
    padding-top: 5px;
}

/* The Cyan Vertical Line Accent */
.product-table td:nth-child(3)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 4px;
    background-color: #00fdeb; /* Cyan Accent */
}

/* --- 5. MIDDLE SECTION (Specs: RAM, Storage, Uplink, IP) --- */

/* Target Columns 4, 5, 6, 7 */
.product-table td:nth-child(4), 
.product-table td:nth-child(5), 
.product-table td:nth-child(6), 
.product-table td:nth-child(7) {
    grid-row: 1 / span 2; /* Span full height */
    flex-direction: column; /* Label on top, value on bottom */
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid #f2f2f2 !important;
    height: 100%;
    font-size: 1.1em;
    color: #00453d;
    font-weight: 800;
    display: flex;
}

/* Add Headings via CSS */
/* --- 1. Define the Labels and Icons --- */

/* RAM: Chip Icon */
.product-table td:nth-child(4)::before { 
    content: "RAM"; 
    background-image: url("/assect/images/billing-images/ram.png");
}

/* STORAGE: Database/Server Icon */
.product-table td:nth-child(5)::before { 
    content: "STORAGE"; 
    background-image: url("/assect/images/billing-images/server-storage.png");
}

/* UPLINK: Cloud/Upload Icon */
.product-table td:nth-child(6)::before { 
    content: "UPLINK"; 
    background-image: url("/assect/images/billing-images/bandwidth.png");
}

/* IPV4: Globe/Network Icon */
.product-table td:nth-child(7)::before { 
    content: "IPV4"; 
    background-image: url("/assect/images/billing-images/web.png");
}

/* --- 2. Style the Layout (Shared Styles) --- */
.product-table td:nth-child(4)::before,
.product-table td:nth-child(5)::before,
.product-table td:nth-child(6)::before,
.product-table td:nth-child(7)::before {
    /* Font Styling */
    font-size: 0.75rem;
    color: #666;
    font-weight: 600;
    letter-spacing: 0.5px;
    
    /* Box Model */
    display: block;
    margin-bottom: 8px;
    
    /* IMAGE POSITIONING MAGIC */
    height: 45px; /* Define a fixed height to hold both icon and text */
    padding-top: 25px; /* Pushes the text down to make room for icon */
    box-sizing: border-box; /* Ensures padding is included in height */
 
    
    /* Background Properties */
    background-repeat: no-repeat;
    background-position: center top; /* Image sits at the top */
    background-size: 25px 25px; /* Size of the icon */
    text-align: center; /* Centers the text below the icon */
}

/* --- 6. RIGHT SECTION (Price & Button) --- */

/* Price */
.product-table td:nth-child(8) {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    grid-column: 6;
    grid-row: 1;
    text-align: center;
    color: #00453d; /* Dark Green */
    font-weight: 800;
    font-size: 1.5rem;
    align-self: center !important;
    padding-bottom: 5px;
}

/* Button Container */
.product-table td:nth-child(9) {
    grid-column: 6;
    grid-row: 2;
    text-align: center;
    align-self: start;
    padding-top: 5px;
}

/* Button Styling */
#orderSummary .btn-primary {
    background-color: #00453d; /* Dark Green */
    border-color: #00453d;
    color: #ffffff;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-top: 10px;
}

#orderSummary .btn-primary:hover {
    background-color: #002e29;
    border-color: #002e29;
}


/* --- 7. MOBILE RESPONSIVENESS --- */
@media (max-width: 991px) {
    .product-table tbody tr.country-row {
        display: flex;
        flex-direction: column;
    }

    /* Make Green header full width */
    .product-table td:nth-child(1),
    .product-table td:nth-child(2),
    .product-table td:nth-child(3) {
        width: 100%;
        text-align: center;
        padding-left: 0;
        justify-self: center;
    }

    /* Reset City alignment for mobile */
    .product-table td:nth-child(2) {
        text-align: center;
        padding-right: 0;
        justify-self: center;
        
    }
    
    /* Move cyan line to top border for mobile */
    .product-table td:nth-child(3)::before {
        left: 0; top: 0; width: 100%; height: 3px;
    }

    /* 2x2 Grid for Specs on Mobile */
    .product-table td:nth-child(4), 
    .product-table td:nth-child(5), 
    .product-table td:nth-child(6), 
    .product-table td:nth-child(7) {
        width: 50%;
        display: inline-flex;
        border-bottom: 1px solid #eee;
        padding: 15px 0;
    }

    .product-table td:nth-child(8), 
    .product-table td:nth-child(9) {
        width: 100%;
        padding: 10px;
    }
}



@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1600px;
    }
}

.filter-table-container{
    display: flex;
    flex-direction: row-reverse;
    gap: 15px;
}






/* navbar */

/* --- Toggle Button (The Arrow) --- */
.sidebar-toggler {
    position: fixed;
    top: 194px;
    left: 20px;
    z-index: 1060;
    background-color: #00453d; /* sb-item-hover */
    color: #00fdeb;            /* sb-accent */
    border: 1px solid #00fdeb; /* sb-accent */
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 253, 235, 0.2);
    transition: all 0.3s ease;
}

.sidebar-toggler:hover {
    background-color: #00fdeb; /* sb-accent */
    color: #111111;            /* sb-bg */
}

/* --- Sidebar Container --- */
.custom-sidebar {
    position: fixed;
    top: 0;
    left: -280px; /* Hidden by default */
    height: 100vh;
    width: 280px;
    background-color: #00453d; /* sb-bg */
    color: #e8f3f1;            /* sb-text */
    padding-top: 80px; 
    transition: left 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1050;
    overflow-y: auto;
    box-shadow: 4px 0 15px rgba(0,0,0,0.5);
    border-right: 1px solid #222;
}

/* When active, slide it in */
.custom-sidebar.active {
    left: 0;
}

/* --- Sidebar Content Styling --- */
.custom-sidebar .navbar-nav {
    flex-direction: column;
    width: 100%;
    padding: 0 15px;
}

.custom-sidebar .nav-item {
    margin-bottom: 5px;
}

/* Main Links */
.custom-sidebar .nav-link,
.custom-sidebar .dropdown-item {
    color: #e8f3f1 !important; /* sb-text */
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    font-weight: 500;
}

/* Icons */
.custom-sidebar .nav-link i,
.custom-sidebar .dropdown-item i {
    margin-right: 15px;
    width: 20px;
    text-align: center;
    color: #888; /* Dimmed icons initially */
    transition: color 0.2s;
}

.navbar-nav {
    background-color: #00453d;
    padding: 20px;
    width: 250px; /* Adjust width as needed */
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: 'Segoe UI', sans-serif;
    
}

/* Base Button Styling */
.navbar-nav .pr-4 {
    color: #e8f3f1; /* Pale Mint text */
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 0 8px 8px 0; /* Rounded right corners */
    border-left: 3px solid transparent; /* Hidden border for transition */
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ffffff;
}

/* Hover Effect */
.navbar-nav .pr-4:hover {
    background-color: rgba(0, 253, 235, 0.1); /* Low opacity Cyan */
    color: #00fdeb; /* Bright Cyan text */
    border-left: 3px solid #00fdeb; /* Solid Cyan indicator */
    padding-left: 25px; /* Slight movement to the right */
    box-shadow: 0 4px 15px rgba(17, 17, 17, 0.2); /* #111111 Shadow */
}

/* Active State (if a link is clicked) */
.navbar-nav .pr-4.active {
    background: linear-gradient(90deg, rgba(0, 253, 235, 0.15) 0%, transparent 100%);
    border-left: 3px solid #00fdeb;
    color: #ffffff;
}

/* Hover & Active States */
.custom-sidebar .nav-link:hover,
.custom-sidebar .dropdown-item:hover,
.custom-sidebar .nav-item.active > .nav-link {
    background-color: black; /* sb-item-hover */
    color: #00fdeb !important; /* sb-accent */
}

.custom-sidebar .nav-link:hover i,
.custom-sidebar .dropdown-item:hover i {
    color: #00fdeb; /* sb-accent */
}

/* Special Left Border for "Selected" look */
.custom-sidebar .nav-link:hover {
    border-left: 4px solid #00fdeb; /* sb-accent */
    padding-left: 16px; 
}

/* Force the dropdown to flow within the document */
#mainSidebar .dropdown-menu {
    position: static !important; 
    float: none !important;
    transform: none !important; /* CRITICAL: Stops JS from moving the menu */
    width: 100% !important;
    margin-top: 0 !important;
    background-color: transparent;
    border: none;
    box-shadow: none;
    
    /* Keep your scrolling preferences */
    max-height: 200px;
    overflow-y: auto;
    
    /* Optional: Indent the dropdown items slightly */
    padding-left: 15px; 
}

/* Ensure the dropdown displays as a block when opened */
#mainSidebar .dropdown-menu.show {
    display: block !important;
}

/* Optional: styling for links inside the sidebar dropdowns */
#mainSidebar .dropdown-menu .dropdown-item {
    color: rgba(255,255,255,0.7);
    white-space: normal; /* Allow long text to wrap */
}

#mainSidebar .dropdown-menu .dropdown-item:hover {
    color: #00453d !important;
    background: #e8f3f1;
}

/* --- Dropdowns inside Sidebar --- */


.custom-sidebar .dropdown-divider {
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* --- Search Bar Styling --- */
.sidebar-search {
    padding: 0 20px 20px 20px;
}
.sidebar-search .form-control {
    background: #e8f3f1;
    border: none;
    color: black; /* sb-text */
    border-radius: 8px;
}
.sidebar-search .btn {
    background: black; /* sb-item-hover */
    color: #00fdeb;      /* sb-accent */
    border: none;
}

/* --- Badges --- */
.badge {
    background-color: #ffc107; 
    color: #000;
    margin-left: auto;
}

/* Newly added items */
/* Container for the strip of icons */
.side-icon-strip {
    position: fixed;
    top: 327px; /* Adjust based on your header height */
    left: 20px; /* Distance from left edge */
    z-index: 1030; /* High enough to be seen, lower than overlay(1040) */
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between icons */
    background: #afdad5; /* White background for the strip */
    padding: 15px 10px;
    border-radius: 30px; /* Rounded pill shape container */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: left 0.3s ease;
}

/* Individual Icon Styling */
.side-icon-strip .icon-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #afdad5;
    color: #00453d;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Hover effects */
.side-icon-strip .icon-item:hover {
    background-color: #00fdeb; /* Primary color on hover */
    color: #fff;
    transform: scale(1.1);
}

.side-icon-strip .icon-item i {
    font-size: 1.1rem;
}

/* Mobile Responsiveness adjustment */
@media (max-width: 768px) {
    .side-icon-strip {
        left: 10px;
        padding: 10px 5px;
    }
}











/* --- Modern Side Nav Layout --- */
.modern-side-nav {
    position: fixed;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 60px;
    background-color: #00453d; /* Dark Green */
    border-radius: 30px;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

@media (max-width:1732px) {
    .modern-side-nav {
    position: fixed;
    top: 61%;
    left: 20px;
    transform: translateY(-50%);
    width: 60px;
    background-color: #00453d; /* Dark Green */
    border-radius: 30px;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}
}

@media (max-width:500px) {
    .modern-side-nav {
    position: fixed;
    top: 45%;
    left: 20px;
    transform: translateY(-50%);
    width: 60px;
    background-color: #00453d; /* Dark Green */
    border-radius: 30px;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}
}

/* Individual Items */
.modern-side-nav .nav-item {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e8f3f1; /* Light Mint */
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Icon Styles */
.modern-side-nav .nav-icon {
    font-size: 18px;
    position: relative;
    z-index: 2;
}

/* Hover Effects */
.modern-side-nav .nav-item:hover {
    background-color: #ffffff;
    color: #00453d;
    box-shadow: 0 0 15px rgba(0, 253, 235, 0.4);
}

.modern-side-nav .nav-item:hover .nav-icon {
    color: #00453d;
}

/* --- Flyout Menus (The Dropdowns) --- */
.modern-side-nav .flyout-menu {
    position: absolute;
    left: 100%; /* Push to right of bar */
    top: -100px;
    margin-left: 15px;
    background-color: #ffffff;
    border: 2px solid #00453d;
    border-radius: 12px;
    width: 220px;
    padding: 10px 0;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Small triangle arrow pointing left */
.modern-side-nav .flyout-menu::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 15px;
    width: 0; 
    height: 0; 
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent; 
    border-right: 8px solid #00453d; 
}

/* Show Menu on Hover */
.modern-side-nav .nav-item:hover .flyout-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    width: max-content;
}

/* Flyout Headers */
.modern-side-nav .flyout-header {
    padding: 5px 15px 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #7a9c98;
    font-weight: 800;
    border-bottom: 1px solid #e8f3f1;
    margin-bottom: 5px;
}

/* Menu Links */
.modern-side-nav .flyout-menu a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #00453d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}

#sideNavSearchInput::placeholder {
    color: black !important;
    opacity: 1; /* Required for Firefox, which adds transparency by default */
}

.modern-side-nav .flyout-menu a i {
    width: 25px;
    text-align: center;
    margin-right: 5px;
    color: #00453d;
}

.modern-side-nav .flyout-menu a:hover {
    background-color: #e8f3f1;
    color: #00453d;
    
}

.modern-side-nav .flyout-menu a:hover i {
    color: #00453d; /* Cyan Accent */
}


/* 1. Container to push content to the right */
.dashboard-top-actions {
    display: flex;
    justify-content: flex-end; /* Aligns item to the right */
    align-items: center;
    margin-bottom: 20px;       /* Adds space between search and dashboard */
    position: relative;
    z-index: 1;              /* Ensures dropdown floats over dashboard */
}

/* 2. Override styles to make the search bar visible outside the sidebar */
.standalone-search {
    width: 300px;              /* Set a fixed width for the search bar */
    position: relative;
}

/* Reset the flyout logic so it is always visible in this specific container */
.standalone-search .flyout-menu {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    width: 100% !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    margin: 0 !important;
}

/* Ensure the input looks clickable */
.standalone-search input#sideNavSearchInput {
    color: black !important;
    padding-left: 10px;
    background-color: white !important;
}

.standalone-search input#sideNavSearchInput::placeholder {
    color: rgba(0, 0, 0, 0.7) !important;
}

/* Adjust the dropdown results box positioning */
.standalone-search .g-billing-accounts-products-dropdown-div {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 0 0 10px 10px;
    z-index: 101;
    display: none; /* Hide results initially until clicked/focused */
}

/* Show dropdown when hovering or focusing */
.standalone-search:hover .g-billing-accounts-products-dropdown-div,
.standalone-search:focus-within .g-billing-accounts-products-dropdown-div {
    display: block;
}

/* --- Simple Labels (For items without dropdowns like Home/Cart) --- */
.modern-side-nav .flyout-label {
    position: absolute;
    left: 100%;
    top: 55%;
    transform: translateY(-50%) translateX(-10px);
    background-color: white;
    color: #00453d;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    margin-left: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 1px solid #00453d;
}

.modern-side-nav .nav-item:hover .flyout-label {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* --- Search Bar Specifics --- */
.modern-side-nav .search-flyout {
    width: 425px;
    padding: 15px;
}

@media (max-width: 500px) {
  .search-flyout {
    width: auto !important; 
  }
}

.modern-side-nav .side-search-input {
    width: 100%;
    background: #e8f3f1;
    border: 1px solid transparent;
    padding: 8px 12px;
    border-radius: 6px;
    color: #00453d;
    outline: none;
}

.modern-side-nav .side-search-input:focus {
    border-color: #00fdeb;
    background: white;
}

/* --- Cart Badge --- */
.modern-side-nav .side-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #00fdeb;
    color: #00453d;
    font-size: 10px;
    font-weight: 800;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #00453d;
}

/* Divider inside dropdown */
.modern-side-nav .dropdown-divider {
    height: 1px;
    background-color: #e8f3f1;
    margin: 5px 0;
}

.logout-link {
    color: #ff4d4d !important;
}
.logout-link:hover {
    background-color: #fff0f0 !important;
}

/* Keep flyout open when typing (Input has focus) */
.modern-side-nav .nav-item:focus-within .flyout-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
/* Responsive Hide (Optional - Hide on very small screens if needed) */
@media (max-width: 768px) {
    .modern-side-nav {
        left: 10px;
        width: 50px;
        padding: 15px 0;
    }
    .modern-side-nav .nav-item {
        width: 35px;
        height: 35px;
    }
}




/* --- Responsive Adjustments using Media Queries --- */

/* For Tablets and smaller laptops (e.g., screen width <= 992px) */
@media (max-width: 992px) {
    .search-location-btn-container {
        flex-direction: column; /* Stack the items vertically */
        align-items: center; /* Center them */
        padding: 1rem 2rem; /* Reduce padding */
        gap: 1rem; /* Add space between stacked items */
    }

    .search-location-btn-container .new-search-container {
        width: 100%; /* Allow search container to take full width */
        max-width: 400px; /* But not get excessively wide */
    }
}

/* For Mobile phones (e.g., screen width <= 576px) */
@media (max-width: 576px) {
    .search-location-btn-container {
        padding: 1rem 1rem; /* Further reduce padding for small screens */
    }

    /* Stack the contact details vertically on very small screens */
    .details {
        flex-direction: column;
        gap: 10px;
    }

    /* Make the dropdown full-width relative to its container and remove the problematic min-width */
    .search-location-btn-container .location-search-results-dropdown {
       min-width: 0;
       width: 100%;
    }
}





/*
  Responsive fixes for the main navigation bar.
*/

/*
  This media query targets screens smaller than 1200px, which is the
  breakpoint set by your 'navbar-expand-xl' class.
*/
@media (max-width: 1199.98px) {

    /*
      **THE CRITICAL FIX**: This rule overrides Bootstrap's default behavior
      of hiding the collapsed menu (`display: none`). We force it to be
      visible as a block-level element. The `!important` is necessary
      to ensure our style takes precedence.
    */
    .main-navbar-wrapper .navbar-collapse.nav-c {
        display: block !important;
        width: 100%; /* Ensure the container takes up the full width. */
        padding: 1rem; /* Add some internal spacing. */
        margin-top: 0.5rem; /* Add space below the top part of the header. */
        border-top: 1px solid #dee2e6; /* Add a separator line. */
    }

    /* Re-style the navigation lists to stack vertically. */
    .main-navbar-wrapper .navbar-collapse .navbar-nav {
        flex-direction: column; /* Stack flex items vertically. */
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    /* Reset horizontal margins used for the desktop layout. */
    .main-navbar-wrapper .navbar-collapse .navbar-nav.mr-auto,
    .main-navbar-wrapper .navbar-collapse .navbar-nav.ml-auto {
        margin: 0 !important;
    }

    /* Give each navigation item some vertical space. */
    .main-navbar-wrapper .navbar-collapse .nav-item {
        margin-bottom: 0.25rem;
    }
    
    /* Ensure links have proper padding for easy tapping. */
    .main-navbar-wrapper .navbar-collapse .nav-link {
        padding: 0.6rem 0.25rem;
    }

    /* Visually separate the final "toolbar" section. */
    .main-navbar-wrapper .navbar-collapse .toolbar {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #dee2e6;
    }

    /* Remove the desktop-specific margin from the cart item. */
    .main-navbar-wrapper .navbar-collapse .toolbar .nav-item.ml-3 {
        margin-left: 0 !important;
    }

    /* Reset the cart item count badge to display next to the icon. */
    .main-navbar-wrapper .navbar-collapse .cart-btn .badge {
        position: static;
        transform: none;
        margin-left: 8px; /* Add space between the icon and badge. */
    }
}

/*
  Style for the cart badge on larger screens (>=1200px)
  to ensure it's positioned correctly on the icon's corner.
*/
@media (min-width: 1200px) {
    .main-navbar-wrapper .cart-btn {
        position: relative;
    }
    .main-navbar-wrapper .cart-btn .badge {
        position: absolute;
        top: -5px;
        right: -10px;
    }
}



/* Configure options */


/* Container */
.billing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

/* Default Card Style (Clean White) */
.billing-card {
    background-color: #ffffff;
    border: 1px solid #e8f3f1; /* Very light mint border */
    border-radius: 8px;
    padding: 20px 10px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 69, 61, 0.05); /* Subtle green shadow */
}

/* Text Styles (Default) */
.billing-card .cycle-name {
    display: block;
    font-weight: 700;
    color: #00453d; /* Dark Green Text */
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.billing-card .cycle-price {
    display: block;
    color: #00453d; /* Dark Green Price */
    font-size: 16px;
    font-weight: 500;
    opacity: 0.8;
}

/* Hover Effect */
.billing-card:hover {
    background-color: #e8f3f1; /* Light Mint Hover */
    border-color: #00453d;
    transform: translateY(-3px);
}

/* --- SELECTED STATE (The "Fill") --- */
.billing-card.active {
    background-color: #00453d; /* Fills with Dark Green */
    border: 2px solid #00fdeb; /* Neon Cyan Border */
    box-shadow: 0 8px 20px rgba(0, 69, 61, 0.3);
}

/* Text Colors Logic for Selected State */
.billing-card.active .cycle-name {
    color: #ffffff; /* White text on dark bg */
}

.billing-card.active .cycle-price {
    color: #00fdeb; /* Neon price */
    font-weight: 700;
    transform: scale(1.05);
}

/* The Checkmark Badge */
.billing-card.active::after {
    content: "✓";
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #00fdeb; /* Neon Background */
    color: #00453d;            /* Dark Green Tick */
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff; /* White ring to separate from card */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}



/* --- Control Panel Card Selection CSS --- */

/* Container for the cards to ensure they align nicely */
.cp-selection-container {
        display: flex;
        flex-wrap: wrap; 
        gap: 15px; /* Space between cards */
    }

    /* Wrapper for Input + Label (Ensures flex calculation works on the group) */
    .cp-option-item {
        display: flex; /* Ensures the wrapper fits the content */
    }

    /* Hide the default radio button */
    .cp-option-radio {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
    }

    /* THE SQUARE CARD DESIGN */
    .cp-card {
        /* Layout: Vertical Stack */
        display: flex;
        flex-direction: column; 
        align-items: center;    /* Center Horizontally */
        
        /* OPTION A: 'center' groups everything in the middle.
           OPTION B: 'space-between' pushes image top, price bottom. 
           (Using 'center' as per your previous request, but 'space-between' is good for strict squares)
        */
        justify-content: center; 
        
        /* Size: Strictly Fixed Square */
        width: 160px;  
        height: auto; 
        box-sizing: border-box; /* IMPORTANT: Keeps size 160px including padding */
        
        /* Theme Colors */
        background-color: #e8f3f1; 
        color: #111111;            
        border: 2px solid #00453d; 
        
        padding: 15px;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
        
        /* Prevents content from breaking the square shape */
        overflow: hidden; 
    }

    /* Image Styling */
    .cp-card-logo {
        max-height: 45px;       /* Slightly smaller to fit square */
        max-width: 90%;
        margin-bottom: 10px;
        object-fit: contain;
    }

    /* Product Name Styling */
    .cp-card-title {
        font-weight: 700;
        font-size: 13px; /* Adjusted to prevent overflow */
        line-height: 1.3;
        margin-bottom: 5px;
        width: 100%;
    }

    /* Price Styling */
    .cp-card-price {
        font-size: 13px;
        font-weight: 600;
        color: #4CAF50;
        margin-top: auto; /* Pushes price to bottom if space permits */
    }

    /* HOVER EFFECT */
    .cp-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(17, 17, 17, 0.2);
    }

    /* SELECTED STATE */
    .cp-option-radio:checked + .cp-card {
        background-color: #00453d; 
        border-color: #00fdeb;     
        color: #00fdeb !important; 
        box-shadow: 0 0 10px rgba(0, 253, 235, 0.3); 
    }

    /* Force text color change on selection */
    .cp-option-radio:checked + .cp-card .cp-card-title,
    .cp-option-radio:checked + .cp-card .cp-card-price {
        color: #00fdeb !important;
    }











/* --- 1. CONFIGURABLE OPTIONS SECTION HEADERS --- */
#productConfigurableOptions .form-group label {
    color: #00453d;          /* Dark Green text */
    font-weight: 700;        /* Bold */
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin: 15px;
    display: flex;
}


.billing-cycle-label{
    color: #00453d !important;          /* Dark Green text */
    font-weight: 700;        /* Bold */
    font-size: 0.85rem !important;
    letter-spacing: 0.5px;
    margin: 15px;
    display: block;
}
/* --- 2. CUSTOM DROPDOWN STYLE (The <select> element) --- */
#productConfigurableOptions select.form-control {
    /* Reset Default Browser Styles */
    appearance: none;        
    -webkit-appearance: none;
    -moz-appearance: none;
    
    /* Box Styling */
    background-color: #e8f3f1;   /* Light Mint Background */
    border: 2px solid #e8f3f1;   /* Match Border to BG initially */
    border-radius: 8px;          /* Rounded Corners */
    height: 55px;                /* Taller, easier to click */
    padding: 0 50px 0 20px;      /* Right padding makes room for the arrow */
    
    /* Text Styling */
    color: #111111;              /* Dark Grey Text */
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    
    /* --- CUSTOM ARROW ICON (SVG) --- */
    /* This creates a Dark Green Chevron arrow */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300453d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
}

/* --- 3. HOVER STATE --- */
#productConfigurableOptions select.form-control:hover {
    background-color: #ffffff;   /* White background on hover */
    border-color: #00453d;       /* Dark Green Border appears */
    box-shadow: 0 4px 10px rgba(0, 69, 61, 0.1);
}

/* --- 4. FOCUS/SELECTED STATE (When user clicks it) --- */
#productConfigurableOptions select.form-control:focus {
    outline: none;
    background-color: #ffffff;
    border-color: #00fdeb;       /* Neon Cyan Border */
    box-shadow: 0 0 0 4px rgba(0, 253, 235, 0.2); /* Soft Cyan Glow */
    
    /* Change arrow color to Cyan on focus (optional, looks cool) */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300fdeb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

/* --- 5. STYLE THE DROPDOWN OPTIONS (Browser support varies) --- */
#productConfigurableOptions select.form-control option {
    background-color: #ffffff;
    color: #111111;
    padding: 15px;
}



.cart-body1 .sidebar-collapsed{
    display: none;
}

/* Layout Wrapper */
.secondary-cart-sidebar {
    max-width: 750px;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* NEW STRUCTURE: 
   Removes padding from the main card to allow the header 
   to stretch full width, creating the split-tone look.
*/
.order-summary {
    background-color: #e8f3f1;
    /* Create the jagged receipt bottom using radial gradient */
    background-image: radial-gradient(circle at 10px -5px, transparent 12px, #e8f3f1 13px);
    background-size: 20px 100%;
    background-position: 0 100%;
    background-repeat: repeat-x;
    
    /* Standard styling */
    border-radius: 12px 12px 0 0; /* Top corners round, bottom jagged */
    box-shadow: 0 10px 30px rgba(0, 69, 61, 0.1);
    padding: 0 0 20px 0; /* Extra padding at bottom for jags */
    position: relative;
    border: none;
    
    /* Paper float animation */
    animation: floatPaper 3s ease-in-out infinite;
    max-width: 1000px;
    margin: auto;
}

/* THE HEADER BLOCK 
   Solid Dark Green background with White text and Cyan accent
*/
.order-summary h2 {
    background-color: #00453d; /* Dark Green Header Background */
    color: #ffffff; /* White text for maximum contrast on green */
    margin: 0; /* Remove default margins */
    padding: 35px 20px; /* Big, spacious padding */
    font-size: 32px; /* Very Large Font */
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1.5px;
    border-bottom: 5px solid #00fdeb; /* Thick Electric Cyan separator */
}

/* THE CONTENT AREA 
   Since we removed padding from the parent, we add it back here 
*/
/* --- 1. Main Wrapper & Layout --- */
.modern-summary-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px; /* Adjust based on your sidebar width */
    margin: 0 auto;
    font-family: 'Inter', 'Segoe UI', sans-serif; /* Ensure a clean font */
}

/* --- 2. The Card Container --- */
.order-summary-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 69, 61, 0.15); /* Deep, soft shadow */
    overflow: hidden; /* Clips the inner content to the rounded corners */
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 69, 61, 0.05);
    transition: transform 0.3s ease;
}

/* Optional: Slight hover lift for the whole card */
.order-summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 69, 61, 0.2);
}

/* --- 3. Header Styling --- */
.summary-header {
    background: #ffffff;
    padding: 30px 30px 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.summary-title {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin: 0;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-title i {
    color: #00453d; /* Your brand green */
    font-size: 20px;
}

/* --- 4. Content Area (The Receipt Look) --- */
.summary-content-box {
    padding: 10px 30px 30px 30px;
}

.summary-container {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    font-weight: 500;
}

/* Make the pricing lines usually generated by WHMCS look better */
.summary-container div {
    margin-bottom: 2px;
    padding-bottom: 2px;
    border-bottom: 1px dashed #e0e0e0;
}

.summary-container div:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
    font-weight: 700;
    color: #111;
    font-size: 20px;
    margin-top: 15px;
}

/* --- 5. Loader --- */
.loader {
    color: #ffffff;
    font-size: 20px;
    display: none; /* Toggled by JS */
}

/* --- 6. Footer & Modern Button --- */
.summary-footer {
    padding: 0 20px 20px 20px;
}

.btn-checkout-modern {
    background: linear-gradient(135deg, #00453d 0%, #002e28 100%);
    color: #ffffff;
    border: none;
    width: 100%;
    padding: 18px 25px;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 69, 61, 0.2);
}

/* The Cyan Accent on the icon */
.btn-checkout-modern .btn-icon {
    background: rgba(255, 255, 255, 0.1);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-checkout-modern .btn-icon i {
    color: #00fdeb; /* Your brand cyan */
    font-size: 14px;
}

/* Hover Effects */
.btn-checkout-modern:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 69, 61, 0.3);
}

.btn-checkout-modern:hover .btn-icon {
    background: #00fdeb;
    transform: translateX(5px);
}

.btn-checkout-modern:hover .btn-icon i {
    color: #00453d;
}

/* --- 7. Decorative Glow (Optional background effect) --- */
.glow-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #00fdeb 0%, rgba(255,255,255,0) 70%);
    opacity: 0.6;
    z-index: 1;
    filter: blur(20px);
}



#iCheck-menu-btn.iradio_square-blue{
  display: none;
}

#iCheck-close-btn.iradio_square-blue{
  display: none;
}



/* --- Main Container --- */
.sticky-summary-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1500px;
    background-color: #00453d; /* Dark Green Background */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 9999;
    color: #e8f3f1; /* Light Text */
    overflow:visible;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(255,255,255,0.1);
    /* Initial Height = Height of collapsed view only */
    max-height: 70px; 
}

/* --- Hover State: Expand Upwards --- */
.sticky-summary-bar:hover {
    max-height: 600px; /* Allow it to grow to fit content */
    bottom: 25px; /* Slight jump up effect */
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* --- 1. Collapsed View Styling --- */
.summary-collapsed {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 25px;
    height: 70px;
    cursor: pointer;
    background: linear-gradient(90deg, #00453d 0%, #005c52 100%);
    border-radius: 10px;
}

.collapsed-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-box {
    position: relative;
    font-size: 40px;
    color: #00fdeb; /* Neon Cyan Accent */
}

.badge-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: #00fdeb; /* Neon Cyan Accent */
    color: #111111; /* Dark Text */
    font-size: 10px;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 50%;
    border: 2px solid #00453d; /* Matches background for cutout effect */
}

.collapsed-text {
    display: flex;
    align-items: baseline;
    line-height: 1.2;
}

.collapsed-text .label {
    font-size: 11px;
    text-transform: uppercase;
    opacity: 0.7;
    letter-spacing: 1px;
    color: #e8f3f1;
    display: none;
}

.collapsed-text .value {
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
}

.collapsed-right .hover-hint {
    font-size: 12px;
    color: #00fdeb; /* Neon Cyan Accent */
    font-weight: 600;
    text-transform: uppercase;
}

/* --- 2. Expanded Content Styling --- */
.summary-expanded {
    background-color: rgba(0,0,0,0.2);
    padding: 0 25px 20px 25px;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s; /* Delay opacity slightly */
}

.sticky-summary-bar:hover .summary-expanded {
    opacity: 1;
}

.summary-collapsed .fa-chevron-up {
        transition: transform 0.3s ease;
    }

    /* 2. Rotate the arrow 180 degrees (pointing down) on HOVER */
    .summary-collapsed:hover .fa-chevron-up {
        transform: rotate(180deg);
    }


#producttotal .product-name{
    display: none;
}


/* WHMCS Generated Content Styling override */
.whmcs-cart-data {
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 5px;
    font-size: 14px;
    color: #e8f3f1;
}

/* Target standard WHMCS classes inside the ajax container */
.whmcs-cart-data .clearfix {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.summary-totals .clearfix{
    font-size: 22px;
}
.whmcs-cart-data .total-due-today {
    font-size: 1.6em;
    color: #00fdeb; /* Neon Cyan Accent */
    font-weight: bold;
    border-bottom: none;
    margin-top: 15px;
    text-align: right;
}

/* Action Button */
.btn-checkout {
    width: 100%;
    background-color: #00fdeb; /* Neon Cyan Accent */
    color: #111111; /* Dark Text */
    font-weight: bold;
    border: none;
    padding: 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s;
}

.btn-checkout:hover {
    transform: scale(1.02);
    background-color: #ffffff;
}

/* Loader override */
#orderSummaryLoader {
    color: #00fdeb; /* Neon Cyan Accent */
    margin-right: 10px;
}

.sub-heading .primary-bg-color {
    text-align:center; 
    padding:5px; 
    border-radius:10px;
}












/* Support Type Card Container */
.st-container {
    display: flex;
    flex-direction: row;
    gap: 15px; /* Space between cards */
    width: 100%;
}

.st-option-wrapper {
    flex: 1; /* Makes both cards equal width */
    position: relative;
}

/* Hide the default radio input */
.st-hidden-radio {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* The Card Design */
.st-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #ffffff;
    border: 2px solid #e8f3f1; /* Light Mint Border */
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 70%;
}

.st-card:hover {
    border-color: #00453d; /* Dark Green hover */
    box-shadow: 0 4px 12px rgba(0, 69, 61, 0.1);
}

/* Active State (When Radio is checked) */
.st-hidden-radio:checked + .st-card {
    color: white;
    background-color: #00453d; /* Light Mint Background */
    border-color: #00fdeb; /* Dark Green Border */
}

/* Add this to your CSS */
.st-hidden-radio:checked + .st-card .st-title {
    color: white;
}

/* --- Attractive Radio Button Design --- */
.st-custom-radio {
    height: 22px;
    width: 22px;
    min-width: 22px;
    background-color: transparent;
    border: 2px solid #00fdeb; /* Dark Green Ring */
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The inner dot (hidden by default) */
.st-custom-radio::after {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #00fdeb; /* Bright Cyan Dot */
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.2s ease-in-out;
}

/* Show inner dot when checked */
.st-hidden-radio:checked + .st-card .st-custom-radio::after {
    transform: scale(1);
}

/* Typography */
.st-content {
    display: flex;
    flex-direction: column;
}

.st-title {
    font-weight: 700;
    color: #111111; /* Black */
    font-size: 16px;
    margin-bottom: 4px;
}

.st-price {
    font-weight: 500;
    color: #00453d; /* Dark Green */
    font-size: 14px;
}


/* Mobile Responsive: Stack them on small screens */
@media (max-width: 768px) {
    .st-container {
        flex-direction: column;
    }
}









/* Radio Button Container (The outer circle) */
    .custom-os-radio-box {
        position: absolute;
        top: 15px;
        right: 15px;
        height: 22px;
        width: 22px;
        border: 2px solid #111111; /* Black Border when unchecked */
        border-radius: 50%;
        background-color: #ffffff;
        z-index: 5;
        transition: all 0.2s ease;
    }

    /* The Inner Dot (Hidden by default) */
    .custom-os-radio-box::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #00fdeb; /* Dark Green Dot */
        transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    /* Ensure the Card has relative positioning so the radio sits inside it */
    .cp-card {
        position: relative; 
        border: 2px solid #e0e0e0; /* Default border */
        transition: all 0.3s ease;
    }

    /* --- CHECKED STATE LOGIC --- */
    
    

    /* Show the Inner Dot */
    .cp-option-radio:checked + .cp-card .custom-os-radio-box::after {
        transform: translate(-50%, -50%) scale(1);
    }

    /* Style the Card itself when active */
    .cp-option-radio:checked + .cp-card {
        
        border-color: #00fdeb !important;     /* Cyan Border */
        box-shadow: 0 4px 12px rgba(0, 69, 61, 0.15);
    }








 /* Review and checkout page */







    /* Custom WHMCS Cart Design */



/* 1. Hide the options by default */

/* --- Base Button Styles --- */
.details-toggle {
    background-color: #e8f3f1;   /* Light Mint Background */
    color: #00453d;              /* Dark Teal Text */
    border: 1px solid transparent; /* Prepare for hover border */
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;            /* Added slightly bolder text for the dark color */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;   /* Smoothly animate colors */
}

/* --- Hover Effect (Optional) --- */
.details-toggle:hover {
    border-color: #00453d;       /* Add a dark border on hover */
}

/* --- The Arrow Icon --- */
.details-toggle::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    
    /* Default Arrow Color: Dark Teal */
    border-right: 2px solid #00453d; 
    border-bottom: 2px solid #00453d; 
    
    transform: rotate(45deg); 
    transition: all 0.3s ease;   /* Animate rotation and color */
    margin-bottom: 2px;
}

/* --- Active State (When "Hide Details" is showing) --- */
.details-toggle.active {
    background-color: #00453d;   /* Switch to Dark Teal Background */
    color: #e8f3f1;              /* Switch to Light Text */
}

/* --- Active Arrow Style --- */
.details-toggle.active::after {
    /* Switch Arrow to Bright Cyan for visibility and 'pop' */
    border-right: 2px solid #00fdeb; 
    border-bottom: 2px solid #00fdeb;
    
    /* Rotate Upwards */
    transform: rotate(-135deg); 
    margin-bottom: -2px;
}
/* --- Hide/Show Content Logic --- */
.config-options {
    display: none;
    margin-top: 10px;
}

.config-options.show {
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.4s;
}

/* Optional Fade In animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


.custom-cart-container {
    background: #e8f3f1;
    color: #e8f3f1;
    padding: 20px;
    font-family: 'Inter', sans-serif;
    border-radius: 10px;
    height: auto;
    width: 65%;
}

/* Card Structure */
.cart-card {
    background: #00453d;
    border-left: 4px solid #00fdeb;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.cart-card:hover {
    transform: translateX(5px);
    background: #00564c;
}

.card-main {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    align-items: center;
    gap: 130px;
}

.product-name {
    color: #00fdeb;
    margin: 5px 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.badge-group {
    background: rgba(0, 253, 235, 0.1);
    color: #00fdeb;
    padding: 2px 8px;
    font-size: 0.75rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.card-pricing {
    text-align: right;
}

.price-big {
    font-size: 1.4rem;
    font-weight: 800;
    color: #e8f3f1;
}

.cycle-label {
    color: #00fdeb;
    font-size: 0.85rem;
}

/* Action Bar inside Card */
.card-actions {
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.btn-edit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 14px;
    border: 2px solid #3b82f6; /* Blue Border */
    color: #3b82f6;
    border-radius: 50px; /* Pill shape */
    font-weight: bold;
    transition: all 0.2s ease-in-out;
}

.btn-edit:hover {
    background-color: #3b82f6;
    color: white;
    text-decoration: none;
}

.btn-remove {
    background: transparent;
    border: 2px solid #ff4d4d; /* Red Border */
    color: #ff4d4d;
    width: 36px;
    height: 36px;
    border-radius: 50%; /* Circle shape */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.btn-remove:hover {
    background-color: #ff4d4d;
    color: white;
    transform: rotate(90deg); /* Fun rotation effect on hover */
}



.cart-footer-actions {
    padding: 20px 0;
    display: flex;
    justify-content: flex-start;
}

.btn-clear {
    /* CHANGED: Added explicit white background so it stands out */
    background: #ef4444; 
    
    /* CHANGED: Darker border so the outline is clearly visible */
    border: 2px solid white; 
    
    /* CHANGED: Darker text for better readability */
    color: #ffffff; 
    
    padding: 10px 22px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother animation */
    
    /* Added subtle shadow to lift it off the page */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); 
}

.btn-clear:hover {
    border-color: #ef4444; 
    color: #475569; /* Text turns white for high contrast */
    background: #ffffff; /* Button fills with red */
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25); /* Red glow shadow */
    transform: translateY(-2px);
}

.btn-clear:hover i {
    animation: shake 0.5s;
}

@keyframes shake {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
  100% { transform: rotate(0deg); }
}








/* Promo Box */
.promo-box {
    background: #00453d;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    border: 1px solid rgba(0, 253, 235, 0.2);
}

.promo-inline {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.promo-inline input {
    background: #111111;
    border: 1px solid #00fdeb;
    padding: 10px;
    color: white;
    flex-grow: 1;
    border-radius: 4px;
}

.promo-inline button {
    background: #00fdeb;
    color: #111111;
    border: none;
    padding: 0 20px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}

/* Alerts */
.custom-alert {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}
.alert-succ { background: #8bf5b8; color: #111111; }
.alert-warn { background: #ff9800; color: #111111; }
.alert-crit { background: #f44336; color: #ffffff; }

@media (max-width: 768px) {
    .card-main { flex-direction: column; text-align: center; }
    .card-pricing { text-align: center; margin-top: 15px; }
}


/* Container Card */
/* --- Main Card --- */
.os-card {
    background-color: #e8f3f1; /* Light Mint */
    border: 1px solid #00453d; /* Dark Green */
    border-radius: 8px;
    padding: 0;
    position: relative;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #00453d;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 69, 61, 0.12);
}

/* --- Loader --- */
.os-loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(232, 243, 241, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.os-loader-hidden {
    display: none;
}

.os-loader-overlay i {
    font-size: 40px;
    color: #00453d;
}

/* --- Header --- */
.os-header {
    padding: 25px 30px 15px 30px;
    text-align: center;
}

.os-header h2 {
    margin: 0 0 15px 0;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #00453d;
}

.os-header-line {
    width: 50px;
    height: 3px;
    background-color: #00453d;
    margin: 0 auto;
    border-radius: 2px;
}

/* --- Content Body --- */
.os-content {
    padding: 10px 30px 30px 30px;
}

/* --- Rows General --- */
.os-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.5;
}

.os-label {
    font-weight: 500;
    color: #00453d;
    opacity: 0.9;
}

.os-value {
    font-weight: 700;
    text-align: right;
}

.os-label small {
    font-size: 0.85em;
    opacity: 0.8;
}

/* --- Addons (Tax/Promo) Box --- */
.os-addons-container {
    background-color: rgba(0, 69, 61, 0.06);
    border-radius: 6px;
    padding: 15px;
    margin: 15px 0;
    border: 1px dashed rgba(0, 69, 61, 0.2);
}

.os-addons-container .os-row:last-child {
    margin-bottom: 0;
}

.os-discount .os-value {
    color: #00453d;
    text-decoration: underline; /* Subtle emphasis */
}

/* --- Recurring --- */
.os-recurring {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 69, 61, 0.15);
}

/* --- Total Section --- */
.os-total-container {
    background-color: #00453d; /* Dark Green bg for contrast */
    color: #e8f3f1;
    margin: 25px -30px; /* Bleed to edges */
    padding: 5px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: inset 0 3px 10px rgba(0,0,0,0.1);
}

.os-total-label {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.os-total-amount {
    font-size: 28px;
    font-weight: 800;
    color: #00fdeb; /* Pop Color */
}

/* --- Express Checkout --- */
.os-express-area {
    margin-bottom: 25px;
    text-align: center;
}

.os-express-divider {
    display: flex;
    align-items: center;
    color: #00453d;
    opacity: 0.6;
    font-size: 11px;
    margin: 15px 0;
    font-weight: 600;
}

.os-express-divider::before, 
.os-express-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #00453d;
}

.os-express-divider span {
    padding: 0 10px;
}

/* --- Buttons Stack --- */
.os-buttons-stack {
    display: flex;
    flex-direction: column;
    gap: 12px; /* Space between buttons */
}

/* Primary Button (Checkout) */
.os-btn-primary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #29b240;
    color: white;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    border: 2px solid #00453d;
    border-radius: 4px; /* Slightly squarer for professional look */
    box-sizing: border-box;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 69, 61, 0.2);
}

.os-btn-primary:hover {
    background-color: #acfe83; /* Slightly darker cyan */
    border-color: #00453d;
    color: #00453d;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(0, 69, 61, 0.25);
}

.os-btn-primary.os-disabled {
    background-color: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Secondary Button (Continue Shopping) - HIGH VISIBILITY */
.os-btn-secondary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    background-color: transparent;
    color: #00453d;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    /* Thick border makes it very visible */
    border: 2px solid #00453d; 
    border-radius: 4px;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.os-btn-secondary:hover {
    background-color: #00453d;
    color: #00fdeb; /* Cyan text on hover */
    text-decoration: none;
}









/* Container reset */
.cart-tabs-section {
    padding: 20px;
    display: flex;
    justify-content: center;
}

/* --- Main Card Container --- */
.promo-gift-card {
    width: 100%;
    max-width: 684px; /* Matches your image width */
    aspect-ratio: 684 / 365; /* Locks the aspect ratio to match image height */
    
    /* INSERT YOUR IMAGE PATH BELOW */
    background-image: url('/assect/images/billing-images/coupon.png'); 
    
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 69, 61, 0.4);
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- Glassmorphism Overlay --- */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient: Dark Green with opacity to let image show through */
    background: linear-gradient(135deg, rgba(0, 69, 61, 0.90) 0%, rgba(0, 69, 61, 0.75) 100%);
    backdrop-filter: blur(3px); /* Blurs the background image slightly */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

/* --- Content Styling --- */
.card-content {
    width: 100%;
    max-width: 400px;
    animation: fadeIn 0.8s ease-out;
}

.gift-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(0, 253, 235, 0.4));
}

.promo-heading {
    color: #00fdeb; /* Neon Cyan */
    margin: 0;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(0, 253, 235, 0.3);
}

.promo-subtext {
    color: #e8f3f1;
    opacity: 0.8;
    margin: 5px 0 25px 0;
    font-size: 0.9rem;
}

/* --- Input Group Styling --- */
.promo-modern-form {
    display: flex;
    width: 70%;
    gap: 10px;
    align-items: center;
}

.input-group-promo {
    display: flex;
    background: rgba(232, 243, 241, 0.1);
    border: 2px solid rgba(0, 253, 235, 0.3);
    border-radius: 50px; /* Pill shape */
    padding: 0px;
    transition: all 0.3s ease;
    width: 250px;
}

.input-group-promo:focus-within {
    border-color: #00fdeb;
    box-shadow: 0 0 15px rgba(0, 253, 235, 0.2);
    background: rgba(0, 69, 61, 0.8);
}

.input-group-promo input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 20px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.input-group-promo input::placeholder {
    color: rgba(232, 243, 241, 0.5);
}

.promo-btn {
    background-color: #00fdeb;
    color: #00453d;
    border: none;
    border-radius: 40px;
    padding: 10px 30px;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.promo-btn:hover {
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 253, 235, 0.6);
    transform: translateY(-1px);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 500px) {
    .promo-heading { font-size: 1.2rem; }
    .gift-icon { font-size: 2rem; }
}






/*WHMCS Login Page */







/* Container Wrapper */
.whmcs-custom-login {
    display: contents;
    justify-content: center;
    align-items: center;
    min-height: 60vh; /* Centers vertically if page content allows */
}

/* Card Styling */
.custom-login-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 69, 61, 0.15); /* Soft shadow using brand color */
    background: #ffffff;
    overflow: hidden;
    width: 100%;             /* Force the card to try to fill space */
    max-width: 700px;        /* Change 800px to whatever size you want */
    margin: 0 auto;
}

/* Typography */
.custom-title {
    color: #00453d;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.custom-label {
    color: #00453d;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Input Fields */
.custom-input-group {
    border-radius: 8px;
    overflow: hidden;
    background-color: #e8f3f1;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.custom-input-group:focus-within {
    background-color: #ffffff;
    border-color: #00fdeb;
    box-shadow: 0 0 0 3px rgba(0, 253, 235, 0.2);
}

.custom-input-group .input-group-text {
    background: transparent;
    border: none;
    color: #00453d;
}

.custom-input {
    background: transparent;
    border: none;
    color: #00453d;
    height: 50px;
    font-weight: 500;
}

.custom-input:focus {
    background: transparent;
    box-shadow: none;
    color: #00453d;
}

.custom-input::placeholder {
    color: #7a9c98;
}

/* Primary Button */
.custom-btn-primary {
    background-color: #00453d;
    border-color: #00453d;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 69, 61, 0.3);
}

.custom-btn-primary:hover,
.custom-btn-primary:focus,
.custom-btn-primary:active {
    background-color: #003630;
    border-color: #00fdeb; /* Pop of cyan on hover border */
    color: #00fdeb;
    box-shadow: 0 6px 20px rgba(0, 253, 235, 0.2);
}

/* Links */
.custom-link {
    color: #00453d;
    text-decoration: none;
}

.custom-link:hover {
    color: #00fdeb;
    text-decoration: none;
}

.custom-link-accent {
    color: #00453d;
    position: relative;
    z-index: 1;
    text-decoration: none;
}

.custom-link-accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: #00fdeb;
    opacity: 0.4;
    z-index: -1;
    transition: height 0.2s ease;
    text-decoration: none;
}

.custom-link-accent:hover::after {
    height: 100%;
    text-decoration: none;
}

/* Eye Icon Button */
.custom-eye-btn {
    background: transparent;
    border: none;
    color: #00453d;
}

.custom-eye-btn:hover {
    color: #00fdeb;
}

/* Footer */
.custom-card-footer {
    background-color: #e8f3f1;
    border-top: 1px solid rgba(0, 69, 61, 0.05);
    padding: 20px;
}

/* Checkbox */
.custom-checkbox-label {
    color: #00453d;
    font-size: 0.9rem;
    cursor: pointer;
}







/* Container to center and style the background */
.pro-reset-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 15px;
    background-color: #e8f3f1; /* Lightest background color */
    min-height: 50vh;
}

/* The main card container */
.pro-reset-card {
    background-color: #ffffff;
    width: 100%;
    max-width: 450px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 69, 61, 0.1); /* Subtle shadow using the deep teal hue */
    border-top: 4px solid #00fdeb; /* Bright Cyan Accent on top */
    position: relative;
}

/* Typography */
.pro-reset-header {
    margin-bottom: 30px;
    text-align: center;
}

.pro-reset-title {
    color: #00453d; /* Deep Teal */
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.pro-reset-subtitle {
    color: #5c706e; /* Muted version of teal for text */
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.pro-reset-accent-line {
    width: 50px;
    height: 3px;
    background-color: #00fdeb; /* Bright Cyan */
    margin: 0 auto;
    border-radius: 2px;
}

/* Form Styles */
.pro-reset-label {
    color: #00453d;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}

.pro-reset-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

/* Icon positioning */
.pro-reset-icon {
    position: absolute;
    left: 15px;
    color: #00453d;
    z-index: 2;
    font-size: 16px;
    opacity: 0.7;
}

/* Input styling */
.pro-reset-input {
    width: 100%;
    padding: 12px 15px 12px 45px; /* Left padding creates space for icon */
    background-color: #e8f3f1; /* Light background for input */
    border: 2px solid transparent;
    border-radius: 8px;
    color: #00453d;
    font-size: 15px;
    transition: all 0.3s ease;
}

.pro-reset-input::placeholder {
    color: #8fa3a0;
}

.pro-reset-input:focus {
    background-color: #ffffff;
    border-color: #00fdeb; /* Bright Cyan focus border */
    box-shadow: 0 0 0 4px rgba(0, 253, 235, 0.15); /* Soft glow */
    outline: none;
}

/* Button Styling */
.pro-reset-btn {
    background-color: #00453d; /* Deep Teal */
    color: #ffffff;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.pro-reset-btn:hover {
    color: #00fdeb;
    background-color: #002e29; /* Slightly darker teal for hover */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 69, 61, 0.3);
}

.pro-reset-btn:active {
    transform: translateY(0);
}

/* Captcha spacing */
.pro-reset-captcha {
    margin-bottom: 20px;
    padding-top: 10px;
}

/* Alert spacing fix */
.pro-reset-alert {
    margin-bottom: 20px;
}











/* Country Selector Drop Down */

.intl-tel-input {
  position: relative;
  display: inline-block; }
  .intl-tel-input * {
    box-sizing: border-box;
    -moz-box-sizing: border-box; }
  .intl-tel-input .hide {
    display: none; }
  .intl-tel-input .v-hide {
    visibility: hidden; }
  .intl-tel-input input, .intl-tel-input input[type=text], .intl-tel-input input[type=tel] {
    position: relative;
    z-index: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-right: 36px;
    margin-right: 0; }
  .intl-tel-input .flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 1px; }
  .intl-tel-input .selected-flag {
    z-index: 1;
    position: relative;
    width: 36px;
    height: 100%;
    padding: 0 0 0 8px; }
    .intl-tel-input .selected-flag .iti-flag {
      position: absolute;
      top: 0;
      bottom: 0;
      margin: auto; }
    .intl-tel-input .selected-flag .iti-arrow {
      position: absolute;
      top: 50%;
      margin-top: -2px;
      right: 6px;
      width: 0;
      height: 0;
      border-left: 3px solid transparent;
      border-right: 3px solid transparent;
      border-top: 4px solid #555; }
      .intl-tel-input .selected-flag .iti-arrow.up {
        border-top: none;
        border-bottom: 4px solid #555; }
  .intl-tel-input .country-list {
    position: absolute;
    z-index: 2;
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0 0 0 -1px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    background-color: white;
    border: 1px solid #CCC;
    white-space: nowrap;
    max-height: 200px;
    overflow-y: scroll; }
    .intl-tel-input .country-list.dropup {
      bottom: 100%;
      margin-bottom: -1px; 
    }
    .intl-tel-input .country-list .flag-box {
      display: inline-block;
      width: 20px; }
    @media (max-width: 500px) {
      .intl-tel-input .country-list {
        white-space: normal; } }
    .intl-tel-input .country-list .divider {
      padding-bottom: 5px;
      margin-bottom: 5px;
      border-bottom: 1px solid #CCC; }
    .intl-tel-input .country-list .country {
      padding: 5px 10px; }
      .intl-tel-input .country-list .country .dial-code {
        color: #999; }
    .intl-tel-input .country-list .country.highlight {
      background-color: rgba(0, 0, 0, 0.05); }
    .intl-tel-input .country-list .flag-box, .intl-tel-input .country-list .country-name, .intl-tel-input .country-list .dial-code {
      vertical-align: middle; }
    .intl-tel-input .country-list .flag-box, .intl-tel-input .country-list .country-name {
      margin-right: 6px; }
  .intl-tel-input.allow-dropdown input, .intl-tel-input.allow-dropdown input[type=text], .intl-tel-input.allow-dropdown input[type=tel], .intl-tel-input.separate-dial-code input, .intl-tel-input.separate-dial-code input[type=text], .intl-tel-input.separate-dial-code input[type=tel] {
    padding-right: 6px;
    padding-left: 52px;
    margin-left: 0; }
  .intl-tel-input.allow-dropdown .flag-container, .intl-tel-input.separate-dial-code .flag-container {
    right: auto;
    left: 0; }
  .intl-tel-input.allow-dropdown .selected-flag, .intl-tel-input.separate-dial-code .selected-flag {
    width: 46px; }
  .intl-tel-input.allow-dropdown .flag-container:hover {
    cursor: pointer; }
    .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {
      background-color: rgba(0, 0, 0, 0.05); }
  .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover, .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {
    cursor: default; }
    .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag, .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {
      background-color: transparent; }
  .intl-tel-input.separate-dial-code .selected-flag {
    background-color: rgba(0, 0, 0, 0.05);
    display: table; }
  .intl-tel-input.separate-dial-code .selected-dial-code {
    display: table-cell;
    vertical-align: middle;
    padding-left: 28px; }
  .intl-tel-input.separate-dial-code.iti-sdc-2 input, .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text], .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel] {
    padding-left: 66px; }
  .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {
    width: 60px; }
  .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel] {
    padding-left: 76px; }
  .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {
    width: 70px; }
  .intl-tel-input.separate-dial-code.iti-sdc-3 input, .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text], .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel] {
    padding-left: 74px; }
  .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {
    width: 68px; }
  .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel] {
    padding-left: 84px; }
  .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {
    width: 78px; }
  .intl-tel-input.separate-dial-code.iti-sdc-4 input, .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text], .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel] {
    padding-left: 82px; }
  .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {
    width: 76px; }
  .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel] {
    padding-left: 92px; }
  .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {
    width: 86px; }
  .intl-tel-input.separate-dial-code.iti-sdc-5 input, .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text], .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel] {
    padding-left: 90px; }
  .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {
    width: 84px; }
  .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel] {
    padding-left: 100px; }
  .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {
    width: 94px; }
  .intl-tel-input.iti-container {
    position: absolute;
    top: -1000px;
    left: -1000px;
    z-index: 1060;
    padding: 1px; }
    .intl-tel-input.iti-container:hover {
      cursor: pointer; }

.iti-mobile .intl-tel-input.iti-container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed; }

.iti-mobile .intl-tel-input .country-list {
  max-height: 50%;
  width: 50%; }
  .iti-mobile .intl-tel-input .country-list .country {
    padding: 10px 10px;
    line-height: 1.5em; }

.iti-flag {
  width: 20px; }
  .iti-flag.be {
    width: 18px; }
  .iti-flag.ch {
    width: 15px; }
  .iti-flag.mc {
    width: 19px; }
  .iti-flag.ne {
    width: 18px; }
  .iti-flag.np {
    width: 13px; }
  .iti-flag.va {
    width: 15px; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .iti-flag {
      background-size: 5630px 15px; } }
  .iti-flag.ac {
    height: 10px;
    background-position: 0px 0px; }
  .iti-flag.ad {
    height: 14px;
    background-position: -22px 0px; }
  .iti-flag.ae {
    height: 10px;
    background-position: -44px 0px; }
  .iti-flag.af {
    height: 14px;
    background-position: -66px 0px; }
  .iti-flag.ag {
    height: 14px;
    background-position: -88px 0px; }
  .iti-flag.ai {
    height: 10px;
    background-position: -110px 0px; }
  .iti-flag.al {
    height: 15px;
    background-position: -132px 0px; }
  .iti-flag.am {
    height: 10px;
    background-position: -154px 0px; }
  .iti-flag.ao {
    height: 14px;
    background-position: -176px 0px; }
  .iti-flag.aq {
    height: 14px;
    background-position: -198px 0px; }
  .iti-flag.ar {
    height: 13px;
    background-position: -220px 0px; }
  .iti-flag.as {
    height: 10px;
    background-position: -242px 0px; }
  .iti-flag.at {
    height: 14px;
    background-position: -264px 0px; }
  .iti-flag.au {
    height: 10px;
    background-position: -286px 0px; }
  .iti-flag.aw {
    height: 14px;
    background-position: -308px 0px; }
  .iti-flag.ax {
    height: 13px;
    background-position: -330px 0px; }
  .iti-flag.az {
    height: 10px;
    background-position: -352px 0px; }
  .iti-flag.ba {
    height: 10px;
    background-position: -374px 0px; }
  .iti-flag.bb {
    height: 14px;
    background-position: -396px 0px; }
  .iti-flag.bd {
    height: 12px;
    background-position: -418px 0px; }
  .iti-flag.be {
    height: 15px;
    background-position: -440px 0px; }
  .iti-flag.bf {
    height: 14px;
    background-position: -460px 0px; }
  .iti-flag.bg {
    height: 12px;
    background-position: -482px 0px; }
  .iti-flag.bh {
    height: 12px;
    background-position: -504px 0px; }
  .iti-flag.bi {
    height: 12px;
    background-position: -526px 0px; }
  .iti-flag.bj {
    height: 14px;
    background-position: -548px 0px; }
  .iti-flag.bl {
    height: 14px;
    background-position: -570px 0px; }
  .iti-flag.bm {
    height: 10px;
    background-position: -592px 0px; }
  .iti-flag.bn {
    height: 10px;
    background-position: -614px 0px; }
  .iti-flag.bo {
    height: 14px;
    background-position: -636px 0px; }
  .iti-flag.bq {
    height: 14px;
    background-position: -658px 0px; }
  .iti-flag.br {
    height: 14px;
    background-position: -680px 0px; }
  .iti-flag.bs {
    height: 10px;
    background-position: -702px 0px; }
  .iti-flag.bt {
    height: 14px;
    background-position: -724px 0px; }
  .iti-flag.bv {
    height: 15px;
    background-position: -746px 0px; }
  .iti-flag.bw {
    height: 14px;
    background-position: -768px 0px; }
  .iti-flag.by {
    height: 10px;
    background-position: -790px 0px; }
  .iti-flag.bz {
    height: 14px;
    background-position: -812px 0px; }
  .iti-flag.ca {
    height: 10px;
    background-position: -834px 0px; }
  .iti-flag.cc {
    height: 10px;
    background-position: -856px 0px; }
  .iti-flag.cd {
    height: 15px;
    background-position: -878px 0px; }
  .iti-flag.cf {
    height: 14px;
    background-position: -900px 0px; }
  .iti-flag.cg {
    height: 14px;
    background-position: -922px 0px; }
  .iti-flag.ch {
    height: 15px;
    background-position: -944px 0px; }
  .iti-flag.ci {
    height: 14px;
    background-position: -961px 0px; }
  .iti-flag.ck {
    height: 10px;
    background-position: -983px 0px; }
  .iti-flag.cl {
    height: 14px;
    background-position: -1005px 0px; }
  .iti-flag.cm {
    height: 14px;
    background-position: -1027px 0px; }
  .iti-flag.cn {
    height: 14px;
    background-position: -1049px 0px; }
  .iti-flag.co {
    height: 14px;
    background-position: -1071px 0px; }
  .iti-flag.cp {
    height: 14px;
    background-position: -1093px 0px; }
  .iti-flag.cr {
    height: 12px;
    background-position: -1115px 0px; }
  .iti-flag.cu {
    height: 10px;
    background-position: -1137px 0px; }
  .iti-flag.cv {
    height: 12px;
    background-position: -1159px 0px; }
  .iti-flag.cw {
    height: 14px;
    background-position: -1181px 0px; }
  .iti-flag.cx {
    height: 10px;
    background-position: -1203px 0px; }
  .iti-flag.cy {
    height: 13px;
    background-position: -1225px 0px; }
  .iti-flag.cz {
    height: 14px;
    background-position: -1247px 0px; }
  .iti-flag.de {
    height: 12px;
    background-position: -1269px 0px; }
  .iti-flag.dg {
    height: 10px;
    background-position: -1291px 0px; }
  .iti-flag.dj {
    height: 14px;
    background-position: -1313px 0px; }
  .iti-flag.dk {
    height: 15px;
    background-position: -1335px 0px; }
  .iti-flag.dm {
    height: 10px;
    background-position: -1357px 0px; }
  .iti-flag.do {
    height: 13px;
    background-position: -1379px 0px; }
  .iti-flag.dz {
    height: 14px;
    background-position: -1401px 0px; }
  .iti-flag.ea {
    height: 14px;
    background-position: -1423px 0px; }
  .iti-flag.ec {
    height: 14px;
    background-position: -1445px 0px; }
  .iti-flag.ee {
    height: 13px;
    background-position: -1467px 0px; }
  .iti-flag.eg {
    height: 14px;
    background-position: -1489px 0px; }
  .iti-flag.eh {
    height: 10px;
    background-position: -1511px 0px; }
  .iti-flag.er {
    height: 10px;
    background-position: -1533px 0px; }
  .iti-flag.es {
    height: 14px;
    background-position: -1555px 0px; }
  .iti-flag.et {
    height: 10px;
    background-position: -1577px 0px; }
  .iti-flag.eu {
    height: 14px;
    background-position: -1599px 0px; }
  .iti-flag.fi {
    height: 12px;
    background-position: -1621px 0px; }
  .iti-flag.fj {
    height: 10px;
    background-position: -1643px 0px; }
  .iti-flag.fk {
    height: 10px;
    background-position: -1665px 0px; }
  .iti-flag.fm {
    height: 11px;
    background-position: -1687px 0px; }
  .iti-flag.fo {
    height: 15px;
    background-position: -1709px 0px; }
  .iti-flag.fr {
    height: 14px;
    background-position: -1731px 0px; }
  .iti-flag.ga {
    height: 15px;
    background-position: -1753px 0px; }
  .iti-flag.gb {
    height: 10px;
    background-position: -1775px 0px; }
  .iti-flag.gd {
    height: 12px;
    background-position: -1797px 0px; }
  .iti-flag.ge {
    height: 14px;
    background-position: -1819px 0px; }
  .iti-flag.gf {
    height: 14px;
    background-position: -1841px 0px; }
  .iti-flag.gg {
    height: 14px;
    background-position: -1863px 0px; }
  .iti-flag.gh {
    height: 14px;
    background-position: -1885px 0px; }
  .iti-flag.gi {
    height: 10px;
    background-position: -1907px 0px; }
  .iti-flag.gl {
    height: 14px;
    background-position: -1929px 0px; }
  .iti-flag.gm {
    height: 14px;
    background-position: -1951px 0px; }
  .iti-flag.gn {
    height: 14px;
    background-position: -1973px 0px; }
  .iti-flag.gp {
    height: 14px;
    background-position: -1995px 0px; }
  .iti-flag.gq {
    height: 14px;
    background-position: -2017px 0px; }
  .iti-flag.gr {
    height: 14px;
    background-position: -2039px 0px; }
  .iti-flag.gs {
    height: 10px;
    background-position: -2061px 0px; }
  .iti-flag.gt {
    height: 13px;
    background-position: -2083px 0px; }
  .iti-flag.gu {
    height: 11px;
    background-position: -2105px 0px; }
  .iti-flag.gw {
    height: 10px;
    background-position: -2127px 0px; }
  .iti-flag.gy {
    height: 12px;
    background-position: -2149px 0px; }
  .iti-flag.hk {
    height: 14px;
    background-position: -2171px 0px; }
  .iti-flag.hm {
    height: 10px;
    background-position: -2193px 0px; }
  .iti-flag.hn {
    height: 10px;
    background-position: -2215px 0px; }
  .iti-flag.hr {
    height: 10px;
    background-position: -2237px 0px; }
  .iti-flag.ht {
    height: 12px;
    background-position: -2259px 0px; }
  .iti-flag.hu {
    height: 10px;
    background-position: -2281px 0px; }
  .iti-flag.ic {
    height: 14px;
    background-position: -2303px 0px; }
  .iti-flag.id {
    height: 14px;
    background-position: -2325px 0px; }
  .iti-flag.ie {
    height: 10px;
    background-position: -2347px 0px; }
  .iti-flag.il {
    height: 15px;
    background-position: -2369px 0px; }
  .iti-flag.im {
    height: 10px;
    background-position: -2391px 0px; }
  .iti-flag.in {
    height: 14px;
    background-position: -2413px 0px; }
  .iti-flag.io {
    height: 10px;
    background-position: -2435px 0px; }
  .iti-flag.iq {
    height: 14px;
    background-position: -2457px 0px; }
  .iti-flag.ir {
    height: 12px;
    background-position: -2479px 0px; }
  .iti-flag.is {
    height: 15px;
    background-position: -2501px 0px; }
  .iti-flag.it {
    height: 14px;
    background-position: -2523px 0px; }
  .iti-flag.je {
    height: 12px;
    background-position: -2545px 0px; }
  .iti-flag.jm {
    height: 10px;
    background-position: -2567px 0px; }
  .iti-flag.jo {
    height: 10px;
    background-position: -2589px 0px; }
  .iti-flag.jp {
    height: 14px;
    background-position: -2611px 0px; }
  .iti-flag.ke {
    height: 14px;
    background-position: -2633px 0px; }
  .iti-flag.kg {
    height: 12px;
    background-position: -2655px 0px; }
  .iti-flag.kh {
    height: 13px;
    background-position: -2677px 0px; }
  .iti-flag.ki {
    height: 10px;
    background-position: -2699px 0px; }
  .iti-flag.km {
    height: 12px;
    background-position: -2721px 0px; }
  .iti-flag.kn {
    height: 14px;
    background-position: -2743px 0px; }
  .iti-flag.kp {
    height: 10px;
    background-position: -2765px 0px; }
  .iti-flag.kr {
    height: 14px;
    background-position: -2787px 0px; }
  .iti-flag.kw {
    height: 10px;
    background-position: -2809px 0px; }
  .iti-flag.ky {
    height: 10px;
    background-position: -2831px 0px; }
  .iti-flag.kz {
    height: 10px;
    background-position: -2853px 0px; }
  .iti-flag.la {
    height: 14px;
    background-position: -2875px 0px; }
  .iti-flag.lb {
    height: 14px;
    background-position: -2897px 0px; }
  .iti-flag.lc {
    height: 10px;
    background-position: -2919px 0px; }
  .iti-flag.li {
    height: 12px;
    background-position: -2941px 0px; }
  .iti-flag.lk {
    height: 10px;
    background-position: -2963px 0px; }
  .iti-flag.lr {
    height: 11px;
    background-position: -2985px 0px; }
  .iti-flag.ls {
    height: 14px;
    background-position: -3007px 0px; }
  .iti-flag.lt {
    height: 12px;
    background-position: -3029px 0px; }
  .iti-flag.lu {
    height: 12px;
    background-position: -3051px 0px; }
  .iti-flag.lv {
    height: 10px;
    background-position: -3073px 0px; }
  .iti-flag.ly {
    height: 10px;
    background-position: -3095px 0px; }
  .iti-flag.ma {
    height: 14px;
    background-position: -3117px 0px; }
  .iti-flag.mc {
    height: 15px;
    background-position: -3139px 0px; }
  .iti-flag.md {
    height: 10px;
    background-position: -3160px 0px; }
  .iti-flag.me {
    height: 10px;
    background-position: -3182px 0px; }
  .iti-flag.mf {
    height: 14px;
    background-position: -3204px 0px; }
  .iti-flag.mg {
    height: 14px;
    background-position: -3226px 0px; }
  .iti-flag.mh {
    height: 11px;
    background-position: -3248px 0px; }
  .iti-flag.mk {
    height: 10px;
    background-position: -3270px 0px; }
  .iti-flag.ml {
    height: 14px;
    background-position: -3292px 0px; }
  .iti-flag.mm {
    height: 14px;
    background-position: -3314px 0px; }
  .iti-flag.mn {
    height: 10px;
    background-position: -3336px 0px; }
  .iti-flag.mo {
    height: 14px;
    background-position: -3358px 0px; }
  .iti-flag.mp {
    height: 10px;
    background-position: -3380px 0px; }
  .iti-flag.mq {
    height: 14px;
    background-position: -3402px 0px; }
  .iti-flag.mr {
    height: 14px;
    background-position: -3424px 0px; }
  .iti-flag.ms {
    height: 10px;
    background-position: -3446px 0px; }
  .iti-flag.mt {
    height: 14px;
    background-position: -3468px 0px; }
  .iti-flag.mu {
    height: 14px;
    background-position: -3490px 0px; }
  .iti-flag.mv {
    height: 14px;
    background-position: -3512px 0px; }
  .iti-flag.mw {
    height: 14px;
    background-position: -3534px 0px; }
  .iti-flag.mx {
    height: 12px;
    background-position: -3556px 0px; }
  .iti-flag.my {
    height: 10px;
    background-position: -3578px 0px; }
  .iti-flag.mz {
    height: 14px;
    background-position: -3600px 0px; }
  .iti-flag.na {
    height: 14px;
    background-position: -3622px 0px; }
  .iti-flag.nc {
    height: 10px;
    background-position: -3644px 0px; }
  .iti-flag.ne {
    height: 15px;
    background-position: -3666px 0px; }
  .iti-flag.nf {
    height: 10px;
    background-position: -3686px 0px; }
  .iti-flag.ng {
    height: 10px;
    background-position: -3708px 0px; }
  .iti-flag.ni {
    height: 12px;
    background-position: -3730px 0px; }
  .iti-flag.nl {
    height: 14px;
    background-position: -3752px 0px; }
  .iti-flag.no {
    height: 15px;
    background-position: -3774px 0px; }
  .iti-flag.np {
    height: 15px;
    background-position: -3796px 0px; }
  .iti-flag.nr {
    height: 10px;
    background-position: -3811px 0px; }
  .iti-flag.nu {
    height: 10px;
    background-position: -3833px 0px; }
  .iti-flag.nz {
    height: 10px;
    background-position: -3855px 0px; }
  .iti-flag.om {
    height: 10px;
    background-position: -3877px 0px; }
  .iti-flag.pa {
    height: 14px;
    background-position: -3899px 0px; }
  .iti-flag.pe {
    height: 14px;
    background-position: -3921px 0px; }
  .iti-flag.pf {
    height: 14px;
    background-position: -3943px 0px; }
  .iti-flag.pg {
    height: 15px;
    background-position: -3965px 0px; }
  .iti-flag.ph {
    height: 10px;
    background-position: -3987px 0px; }
  .iti-flag.pk {
    height: 14px;
    background-position: -4009px 0px; }
  .iti-flag.pl {
    height: 13px;
    background-position: -4031px 0px; }
  .iti-flag.pm {
    height: 14px;
    background-position: -4053px 0px; }
  .iti-flag.pn {
    height: 10px;
    background-position: -4075px 0px; }
  .iti-flag.pr {
    height: 14px;
    background-position: -4097px 0px; }
  .iti-flag.ps {
    height: 10px;
    background-position: -4119px 0px; }
  .iti-flag.pt {
    height: 14px;
    background-position: -4141px 0px; }
  .iti-flag.pw {
    height: 13px;
    background-position: -4163px 0px; }
  .iti-flag.py {
    height: 11px;
    background-position: -4185px 0px; }
  .iti-flag.qa {
    height: 8px;
    background-position: -4207px 0px; }
  .iti-flag.re {
    height: 14px;
    background-position: -4229px 0px; }
  .iti-flag.ro {
    height: 14px;
    background-position: -4251px 0px; }
  .iti-flag.rs {
    height: 14px;
    background-position: -4273px 0px; }
  .iti-flag.ru {
    height: 14px;
    background-position: -4295px 0px; }
  .iti-flag.rw {
    height: 14px;
    background-position: -4317px 0px; }
  .iti-flag.sa {
    height: 14px;
    background-position: -4339px 0px; }
  .iti-flag.sb {
    height: 10px;
    background-position: -4361px 0px; }
  .iti-flag.sc {
    height: 10px;
    background-position: -4383px 0px; }
  .iti-flag.sd {
    height: 10px;
    background-position: -4405px 0px; }
  .iti-flag.se {
    height: 13px;
    background-position: -4427px 0px; }
  .iti-flag.sg {
    height: 14px;
    background-position: -4449px 0px; }
  .iti-flag.sh {
    height: 10px;
    background-position: -4471px 0px; }
  .iti-flag.si {
    height: 10px;
    background-position: -4493px 0px; }
  .iti-flag.sj {
    height: 15px;
    background-position: -4515px 0px; }
  .iti-flag.sk {
    height: 14px;
    background-position: -4537px 0px; }
  .iti-flag.sl {
    height: 14px;
    background-position: -4559px 0px; }
  .iti-flag.sm {
    height: 15px;
    background-position: -4581px 0px; }
  .iti-flag.sn {
    height: 14px;
    background-position: -4603px 0px; }
  .iti-flag.so {
    height: 14px;
    background-position: -4625px 0px; }
  .iti-flag.sr {
    height: 14px;
    background-position: -4647px 0px; }
  .iti-flag.ss {
    height: 10px;
    background-position: -4669px 0px; }
  .iti-flag.st {
    height: 10px;
    background-position: -4691px 0px; }
  .iti-flag.sv {
    height: 12px;
    background-position: -4713px 0px; }
  .iti-flag.sx {
    height: 14px;
    background-position: -4735px 0px; }
  .iti-flag.sy {
    height: 14px;
    background-position: -4757px 0px; }
  .iti-flag.sz {
    height: 14px;
    background-position: -4779px 0px; }
  .iti-flag.ta {
    height: 10px;
    background-position: -4801px 0px; }
  .iti-flag.tc {
    height: 10px;
    background-position: -4823px 0px; }
  .iti-flag.td {
    height: 14px;
    background-position: -4845px 0px; }
  .iti-flag.tf {
    height: 14px;
    background-position: -4867px 0px; }
  .iti-flag.tg {
    height: 13px;
    background-position: -4889px 0px; }
  .iti-flag.th {
    height: 14px;
    background-position: -4911px 0px; }
  .iti-flag.tj {
    height: 10px;
    background-position: -4933px 0px; }
  .iti-flag.tk {
    height: 10px;
    background-position: -4955px 0px; }
  .iti-flag.tl {
    height: 10px;
    background-position: -4977px 0px; }
  .iti-flag.tm {
    height: 14px;
    background-position: -4999px 0px; }
  .iti-flag.tn {
    height: 14px;
    background-position: -5021px 0px; }
  .iti-flag.to {
    height: 10px;
    background-position: -5043px 0px; }
  .iti-flag.tr {
    height: 14px;
    background-position: -5065px 0px; }
  .iti-flag.tt {
    height: 12px;
    background-position: -5087px 0px; }
  .iti-flag.tv {
    height: 10px;
    background-position: -5109px 0px; }
  .iti-flag.tw {
    height: 14px;
    background-position: -5131px 0px; }
  .iti-flag.tz {
    height: 14px;
    background-position: -5153px 0px; }
  .iti-flag.ua {
    height: 14px;
    background-position: -5175px 0px; }
  .iti-flag.ug {
    height: 14px;
    background-position: -5197px 0px; }
  .iti-flag.um {
    height: 11px;
    background-position: -5219px 0px; }
  .iti-flag.us {
    height: 11px;
    background-position: -5241px 0px; }
  .iti-flag.uy {
    height: 14px;
    background-position: -5263px 0px; }
  .iti-flag.uz {
    height: 10px;
    background-position: -5285px 0px; }
  .iti-flag.va {
    height: 15px;
    background-position: -5307px 0px; }
  .iti-flag.vc {
    height: 14px;
    background-position: -5324px 0px; }
  .iti-flag.ve {
    height: 14px;
    background-position: -5346px 0px; }
  .iti-flag.vg {
    height: 10px;
    background-position: -5368px 0px; }
  .iti-flag.vi {
    height: 14px;
    background-position: -5390px 0px; }
  .iti-flag.vn {
    height: 14px;
    background-position: -5412px 0px; }
  .iti-flag.vu {
    height: 12px;
    background-position: -5434px 0px; }
  .iti-flag.wf {
    height: 14px;
    background-position: -5456px 0px; }
  .iti-flag.ws {
    height: 10px;
    background-position: -5478px 0px; }
  .iti-flag.xk {
    height: 15px;
    background-position: -5500px 0px; }
  .iti-flag.ye {
    height: 14px;
    background-position: -5522px 0px; }
  .iti-flag.yt {
    height: 14px;
    background-position: -5544px 0px; }
  .iti-flag.za {
    height: 14px;
    background-position: -5566px 0px; }
  .iti-flag.zm {
    height: 14px;
    background-position: -5588px 0px; }
  .iti-flag.zw {
    height: 10px;
    background-position: -5610px 0px; }

.iti-flag {
  width: 20px;
  height: 15px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: url("../img/flags@2x.png");
  background-repeat: no-repeat;
  background-color: #DBDBDB;
  background-position: 20px 0; 
background-size: 5630px 15px;}
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .iti-flag {
      background-image: url("../img/flags@2x.png"); } }

.iti-flag.np {
  background-color: transparent; }





  







  /* Container & Background */
#registration {
    background-color: #e8f3f1;
    padding: 40px 0;
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    color: #00453d;
}

/* Card Styling */
#registration .card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 69, 61, 0.05);
    margin-bottom: 30px;
    background: #ffffff;
    overflow: visible !important; /* Change from 'hidden' to 'visible' */
    position: relative;
    /* overflow: hidden; */
}
#registration .row {
    position: relative;
    z-index: 2; /* Lower default */
}

#registration .form-group:has(select), 
#registration .form-group:has(input[type="tel"]) {
    z-index: 100 !important;
}

/* 3. Force the Intl-Tel-Input (Phone) list to stay on the very top */
.iti__country-list {
    z-index: 9999 !important;
    background-color: #ffffff !important;
    border: 2px solid #e8f3f1 !important;
}

#registration .card-title {
    color: #00453d;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 20px;
    border-left: 4px solid #00fdeb;
    padding-left: 15px;
}

/* Input Fields & Icons */
#registration .form-group.prepend-icon {
    position: relative;
    margin-bottom: 1.5rem;
}

#registration .field {
    width: 100%;
    padding: 12px 15px 12px 60px !important;
    border: 2px solid #e8f3f1;
    border-radius: 8px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    height: auto;
    color: #00453d;
}

#registration .field:focus {
    border-color: #00fdeb;
    box-shadow: 0 0 0 4px rgba(0, 253, 235, 0.1);
    outline: none;
}

#registration .field-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: #00453d;
    opacity: 0.5;
    margin-bottom: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#registration .field:focus + .field-icon,
#registration .field:focus ~ .field-icon {
    opacity: 1;
    color: #00453d;
}

/* Password Strength Meter */
#registration .password-strength-meter {
    margin-top: 10px;
    padding: 10px;
    background: #e8f3f1;
    border-radius: 8px;
}

#registration .progress {
    height: 6px;
    background-color: #d1e2e0;
    border-radius: 10px;
}

#registration #passwordStrengthMeterBar {
    background-color: #5ee012 !important;
}

/* Custom Checkbox/Toggles */
#registration .accepttos {
    width: 18px;
    height: 18px;
    accent-color: #00453d;
}

/* Buttons */
#registration .btn-primary {
    background-color: #00453d;
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 8px;
    color: #ffffff;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#registration .btn-primary:hover {
    background-color: #00fdeb;
    color: #00453d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 253, 235, 0.3);
}

#registration .btn-default.generate-password {
    background: #e8f3f1;
    color: #00453d;
    border: 1px solid #00453d;
    border-radius: 6px;
    padding: 8px 15px;
}

/* Select fields adjustment */
#registration select.field {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2300453d' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

#main-body .container .row .col-lg-4 .col-xl-3{
    flex: 0 0 100%;
        max-width: 100%;
}






/* Use !important and body prefix to override WHMCS system CSS */
body #registration .field, 
body #registration select.field.form-control {
    padding-left: 60px !important;
    height: 50px !important; /* Forces uniform height */
    appearance: visible !important;
   
}

/* Ensure the icon stays on top of the select box */
body #registration .form-group.prepend-icon .field-icon {
    z-index: 20 !important;
    pointer-events: none;
}

/* Specific fix for WHMCS Country Select Background Arrow */
body #registration select.field {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2300453d' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 12px !important;
}

/* Ensure the form group creates a new stacking context */
#registration .form-group {
    position: relative;
    z-index: 1; 
}

/* Ensure the select field is clickable and above background elements */
body #registration .field {
    position: relative;
    z-index: 5 !important;
    cursor: pointer;
}

/* Ensure icons stay on top of the input but don't block clicks */
body #registration .field-icon {
    z-index: 10 !important;
    pointer-events: none; /* This is crucial so clicks pass through to the select */
}

#registration select.field option {
    background-color: #ffffff !important;
    color: #00453d !important;
    padding: 10px;
}


#registration #containerNewUserSignup .card:nth-child(1) { z-index: 3; }
#registration #containerNewUserSignup .card:nth-child(2) { z-index: 2; }
#registration #containerNewUserSignup .card:nth-child(3) { z-index: 1; }










    /* CUSTOM CSS - Hardcoded colors as requested */
    .ux-checkout-wrapper {
        background-color: #e8f3f1;
        font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
        color: #00453d;
        padding: 40px 15px;
        min-height: 100vh;
    }

    /* Progress Stepper */
    .ux-stepper {
        display: flex;
        justify-content: space-between;
        max-width: 900px;
        margin: 0 auto 40px auto;
        position: relative;
    }

    .ux-stepper::before {
        content: '';
        position: absolute;
        top: 25px;
        left: 5%;
        right: 5%;
        height: 2px;
        background: #cedbd9;
        z-index: 1;
    }

    .ux-step {
        position: relative;
        z-index: 2;
        text-align: center;
        flex: 1;
    }

    .ux-step-icon {
        width: 50px;
        height: 50px;
        background: #ffffff;
        border: 2px solid #cedbd9;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 10px auto;
        font-weight: bold;
        transition: all 0.3s ease;
    }

    .ux-step.active .ux-step-icon {
        background: #00453d;
        border-color: #00fdeb;
        color: #00fdeb;
        box-shadow: 0 0 15px rgba(0, 253, 235, 0.3);
    }

    .ux-step.completed .ux-step-icon {
        background: #00fdeb;
        border-color: #00fdeb;
        color: #00453d;
    }

    .ux-step-label {
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #7a8d8b;
    }

    .ux-step.active .ux-step-label {
        color: #00453d;
    }

    /* Layout Containers */
    .ux-main-container {
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 350px;
        gap: 30px;
    }

    @media (max-width: 991px) {
        .ux-main-container {
            grid-template-columns: 1fr;
        }
    }

    .ux-card {
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 69, 61, 0.05);
        padding: 30px;
        margin-bottom: 25px;
        border: 1px solid rgba(0, 69, 61, 0.05);
    }

    .ux-section-title {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 25px;
        padding-bottom: 10px;
        border-bottom: 2px solid #e8f3f1;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .ux-section-title i {
        color: #00fdeb;
    }

    /* Form Elements */
    .ux-form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .ux-full-width { grid-column: span 2; }

    @media (max-width: 600px) {
        .ux-form-grid { grid-template-columns: 1fr; }
        .ux-full-width { grid-column: span 1; }
    }

    .ux-input-group {
        position: relative;
    }

    .ux-input-group label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 8px;
        color: #556b68;
    }

    .ux-field {
        width: 100%;
        padding: 4px 15px;
        border: 2px solid #e8f3f1;
        border-radius: 8px;
        background: #fcfdfe;
        transition: all 0.2s;
        font-size: 15px;
        color: #00453d;
    }

    .ux-field:focus {
        outline: none;
        border-color: #00fdeb;
        background: #ffffff;
        box-shadow: 0 0 0 4px rgba(0, 253, 235, 0.1);
    }

    /* Buttons */
    .ux-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.2s;
        border: none;
        text-transform: uppercase;
        font-size: 13px;
    }

    .ux-btn-primary {
        background: #00453d;
        color: #00fdeb;
    }

    .ux-btn-accent {
        background: #00fdeb;
        color: #00453d;
    }

    .ux-btn-outline {
        background: transparent;
        border: 2px solid #00453d;
        color: #00453d;
    }

    .ux-btn-outline:hover {
      text-decoration: none;
        background: #00453d;
        color: #ffffff;
    }

    /* Password Strength */
    .ux-password-meter {
        height: 6px;
        background: #e8f3f1;
        border-radius: 3px;
        margin-top: 10px;
        overflow: hidden;
    }

    .ux-password-meter-bar {
        height: 100%;
        width: 0;
        transition: width 0.3s, background-color 0.3s;
    }

    /* Gateway Selectors */
    .ux-gateway-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
    }

    .ux-gateway-item {
        cursor: pointer;
    }

    .ux-gateway-item input { display: none; }

    .ux-gateway-box {
        border: 2px solid #e8f3f1;
        padding: 15px;
        border-radius: 10px;
        text-align: center;
        transition: all 0.2s;
        font-weight: 600;
        background: #ffffff;
    }

    .ux-gateway-item input:checked + .ux-gateway-box {
        border-color: #00fdeb;
        background: rgba(0, 253, 235, 0.05);
        color: #00453d;
    }

    /* Summary Sidebar */
    .ux-summary-card {
        position: sticky;
        top: 170px;
        background: #00453d;
        color: #ffffff;
        padding: 25px;
        border-radius: 12px;
    }

    .ux-summary-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 12px;
        font-size: 14px;
        opacity: 0.9;
    }

    .ux-total-row {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 20px;
        padding-top: 20px;
        display: flex;
        justify-content: space-between;
        align-items: baseline;
    }

    .ux-total-price {
        font-size: 28px;
        font-weight: 800;
        color: #00fdeb;
    }

    .ux-btn-complete {
        width: 100%;
        background: #00fdeb;
        color: #00453d;
        border: none;
        padding: 18px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
        margin-top: 25px;
        cursor: pointer;
        transition: transform 0.2s, background 0.2s;
    }

    .ux-btn-complete:hover {
        background: #00e0d2;
        transform: translateY(-2px);
    }

    /* Header text */
    .ux-welcome-text {
        text-align: center;
        margin-bottom: 40px;
    }
    .ux-welcome-text h1 {
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 10px;
    }

    /* Error Messages */
    .ux-alert-error {
        background: #fff0f0;
        border-left: 4px solid #ff4d4d;
        padding: 15px;
        margin-bottom: 20px;
        border-radius: 4px;
    }

    .w-hidden { display: none !important; }

    /* Marketing Opt-in */
    .ux-optin-box {
        background: rgba(0, 253, 235, 0.05);
        border: 1px dashed #00fdeb;
        padding: 20px;
        border-radius: 8px;
        margin-bottom: 25px;
        display: flex;
        align-items: center;
        gap: 15px;
    }








/* Custom Dashboard Container */
.custom-dash-wrapper {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #00453d;
    background-color: #e8f3f1;
    padding: 20px;
    border-radius: 15px;
}

/* --- Top Stats Area --- */
.dash-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 1000px){
    .dash-stats-grid {
    display: flex;
    flex-direction:column;
    gap: 20px;
    margin-bottom: 30px;
}
}

.dash-stat-card {
    /* Set up the gradient: [Color 50%] [White 50%] */
    background: linear-gradient(to right, #f1fcfb 50%, #ffffff 50%);
    
    /* Make the background double the width of the card */
    background-size: 200% 100%;
    
    /* Start position: Right side (White) is visible */
    background-position: right bottom;
    
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    
    /* Transition handles the slide speed */
    transition: all 0.3s ease;
    
    border: 1px solid rgba(0, 69, 61, 0.05);
    box-shadow: 0 5px 15px rgba(0, 69, 61, 0.05);
    position: relative;
    overflow: hidden;
}

.dash-stat-card:hover {
    /* End position: Slide to Left side (Color) */
    background-position: left bottom;
    
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 69, 61, 0.15);
    text-decoration: none;
    
    /* Note: We removed 'background-color' here because 
       the gradient handles the color change now */
       
    border: 1px solid #00453d;
}

.dash-stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #00fdeb;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.dash-stat-card:hover::after {
    transform: scaleX(1);
}

.stat-content h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #7a9c98; /* Lighter shade of teal for labels */
    margin: 0 0 5px 0;
    font-weight: 600;
}

.stat-content .stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #00453d;
    line-height: 1;
}

.stat-icon img{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #00453d;
    transition: all 0.3s ease;
}

.dash-stat-card:hover .stat-icon {
    /* background: #e8f3f1; */
    color: #00453d;
}

/* --- Widgets / Panels --- */
.custom-dash-wrapper .dash-widget {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 69, 61, 0.03);
    margin-bottom: 25px;
    overflow: hidden;
}

.custom-dash-wrapper .dash-widget-header {
    background: #ffffff;
    padding: 20px 25px;
    border-bottom: 2px solid #e8f3f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-dash-wrapper .dash-widget-title {
    font-size: 18px;
    font-weight: 700;
    color: #00453d;
    margin: 0;
}

.custom-dash-wrapper .dash-widget-title i {
    color: #6fc0ba;
    margin-right: 10px;
    text-shadow: 1px 1px 0 #00453d; /* Outline effect for contrast on bright cyan */
}

.custom-dash-wrapper .dash-widget-body {
    padding: 20px;
    color: #444;
}

/* --- List Groups inside widgets --- */
.custom-dash-wrapper .list-group-item {
    border: none;
    border-bottom: 1px solid #e8f3f1;
    padding: 15px 20px;
    color: #00453d;
    font-weight: 500;
    transition: background 0.2s;
}

.custom-dash-wrapper .list-group-item:last-child {
    border-bottom: none;
}

.custom-dash-wrapper .list-group-item:hover {
    background-color: #e8f3f1;
    padding-left: 25px; /* Slide effect */
}

.custom-dash-wrapper .list-group-item i {
    color: #00453d;
    opacity: 0.7;
    margin-right: 8px;
}

/* --- Buttons & Badges --- */
.custom-dash-wrapper .btn-custom-action {
    background-color: #00453d;
    color: #00fdeb;
    border: none;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.custom-dash-wrapper .btn-custom-action:hover {
    background-color: #00fdeb;
    color: #00453d;
}

.custom-dash-wrapper .badge {
    background-color: #00fdeb;
    color: #00453d;
    border-radius: 4px;
    padding: 4px 8px;
}

/* --- Alerts --- */
.custom-dash-wrapper .alert {
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}





/* Client area */


 .top-sections-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
        margin-bottom: 30px;
        font-family: 'Open Sans', sans-serif; /* or your theme font */
    }

    .top-section-card {
        background-color: #e8f3f1;
        border: 1px solid #00453d;
        border-radius: 8px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: transform 0.2s ease;
        box-shadow: 0 4px 6px rgba(0, 69, 61, 0.1);
    }

    .top-section-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0, 69, 61, 0.15);
    }

    .top-section-header {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        color: #00453d;
        border-bottom: 2px solid rgba(0, 69, 61, 0.1);
        padding-bottom: 10px;
    }

    .top-section-header i {
        font-size: 1.4rem;
        margin-right: 10px;
        color: #00453d;
    }

    .top-section-header h3 {
        margin: 0;
        font-size: 1.2rem;
        font-weight: 700;
        color: #00453d;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .top-section-body {
        color: #00453d;
        font-size: 0.95rem;
        flex-grow: 1;
        margin-bottom: 15px;
    }

    .top-section-body p {
        margin-bottom: 5px;
    }

    .top-section-body strong {
        font-weight: 700;
    }

    /* Shortcut Links List */
    .shortcut-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .shortcut-list li {
        margin-bottom: 8px;
    }
    .shortcut-list a {
        color: #00453d;
        text-decoration: none;
        font-weight: 600;
        display: flex;
        align-items: center;
    }
    .shortcut-list a:hover {
        text-decoration: underline;
        color: #000;
    }
    .shortcut-list i {
        width: 20px;
        text-align: center;
        margin-right: 8px;
        color: #00453d;
    }

    /* Custom Button Style */
    .btn-top-section {
        background-color: #00453d;
        color: white;
        border: none;
        padding: 8px 15px;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        display: inline-block;
        transition: background 0.2s;
        width: 100%;
        text-transform: uppercase;
        font-size: 0.85rem;
    }

    .btn-top-section:hover {
        background-color: #002e29; /* Darker shade of green */
        color: #00fdeb;
        text-decoration: none;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .top-sections-grid {
            grid-template-columns: 1fr;
        }
    }





/* Test Theme design start */



/* Layout Container */
.custom-filter-layout {
    display: flex;
    gap: 20px;
    padding: 20px;
    align-items: flex-start;
}

.sidebar-navigation {
    width: 260px;
    flex-shrink: 0;
}

.product-display-area {
    flex-grow: 1;
}

/* Sidebar Styles */
.sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00453d;
    margin-bottom: 15px;
}

.country-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.country-link {
    display: block;
    padding: 10px 15px;
    background: #e8f3f1;
    color: #00453d;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
    border-left: 4px solid transparent;
}

.item-active .country-link {
    background: #00453d;
    color: #00fdeb;
    border-left-color: #00fdeb;
    font-weight: bold;
}

.country-link i {
    float: right;
    margin-top: 4px;
}

/* Card Styling */
.server-card-container {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e8f3f1;
}

/* Left Column */
.card-identity-col {
    background-color: #00453d;
    color: #ffffff;
    padding: 25px;
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.card-flag-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #00fdeb;
}

.city-label {
    font-size: 0.9rem;
    font-weight: 500;
}

.product-main-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 5px 0;
    line-height: 1.2;
}

.product-sub-specs {
    font-size: 0.85rem;
    color: #e8f3f1;
    opacity: 0.8;
    margin-bottom: 15px;
}

.performance-badges .badge-item {
    background: rgba(0,0,0,0.3);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    border: 1px solid #00fdeb;
    color: #00fdeb;
}

/* Middle Column: Specs */
.card-specs-col {
    flex: 1;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 20px;
    background-color: #fff;
}

.spec-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.spec-box i {
    color: #00453d;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.spec-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
}

.spec-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #00453d;
}

/* Right Column: Pricing */
.card-pricing-col {
    width: 25%;
    padding: 25px;
    border-left: 1px solid #e8f3f1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.price-wrapper {
    text-align: right;
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #bbb;
    font-size: 0.9rem;
}

.current-price {
    color: #00453d;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 800;
}

.price-cycle {
    font-size: 1rem;
    font-weight: 600;
}

.btn-order-now {
    background-color: #00453d;
    color: #00fdeb;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s;
    width: 100%;
    justify-content: center;
}

.btn-order-now:hover {
    transform: translateY(-2px);
    color: #ffffff;
    background-color: #005a50;
}

.card-footer-info {
    margin-top: 10px;
    font-size: 0.75rem;
    color: #666;
}

.status-alert {
    background: #e8f3f1;
    color: #00453d;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #00fdeb;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .custom-filter-layout { flex-direction: column; }
    .sidebar-navigation { width: 100%; }
    .server-card-container { flex-direction: column; }
    .card-identity-col, .card-pricing-col { width: 100%; align-items: center; text-align: center; }
    .card-specs-col { padding: 20px 0; gap: 15px; flex-wrap: wrap; }
    .card-pricing-col { border-left: 0; border-top: 1px solid #e8f3f1; }
}




/* Right Sidebar Styling */
.sidebar-city-filter {
    width: 240px;
    flex-shrink: 0;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #e8f3f1;
    position: sticky;
    top: 20px;
}

.city-radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.city-radio-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.2s;
    background: #e8f3f1; /* Light background requested */
    color: #00453d;
    font-weight: 500;
}

.city-radio-item:hover {
    background: #d1e8e4;
}

/* Hide default radio */
.city-radio-item input {
    display: none;
}

/* Custom Radio Mark */
.radio-mark {
    width: 18px;
    height: 18px;
    border: 2px solid #00453d;
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    display: inline-block;
    background: #fff;
}

/* Radio Checked State */
.city-radio-item input:checked + .radio-mark {
    background: #00453d;
    border-color: #00453d;
}

.city-radio-item input:checked + .radio-mark::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00fdeb; /* Cyan Accent */
}

.city-radio-item input:checked ~ .radio-label {
    font-weight: 700;
}

/* Adjust display area for three columns */
.product-display-area {
    flex: 1;
    min-width: 0; /* Prevents flex items from overflowing */
}

@media (max-width: 1200px) {
    .custom-filter-layout { flex-wrap: wrap; }
    .sidebar-navigation, .sidebar-city-filter { width: 48%; }
    .product-display-area { order: 3; width: 100%; flex: none; }
}




/* Homepage design */

/* --- Container & Typography --- */
.unique-dashboard-wrapper {
    color: #00453d; /* Dark Teal */
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.unique-dashboard-wrapper h2 {
    color: #00453d;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

/* Underline effect for headings */
.unique-dashboard-wrapper h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: #00fdeb; /* Neon Cyan */
    margin: 10px auto 0;
    border-radius: 2px;
}

/* --- Product Grid Layout --- */
.unique-dashboard-wrapper .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* --- Product Cards --- */
.unique-dashboard-wrapper .cyber-card {
    background: #c9e2d3;
    border: 1px solid #e8f3f1; /* Light Mint */
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 69, 61, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}



/* Top accent bar */
.unique-dashboard-wrapper .cyber-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: #00453d; /* Dark Teal */
    transition: 0.3s;
}

.unique-dashboard-wrapper .cyber-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 69, 61, 0.1);
    border-color: #00fdeb; /* Neon Cyan */
}

.unique-dashboard-wrapper .cyber-card:hover::before {
    background: #00fdeb; /* Neon Cyan */
    box-shadow: 0 0 15px #00fdeb;
}

.unique-dashboard-wrapper .cyber-card h3 {
    color: #00453d;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.unique-dashboard-wrapper .cyber-card p {
    color: #6c757d;
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

/* Base styling for both buttons using IDs to override default classes */
#btnLoadMoreCards,
#btnShowLessCards {
    background-color: #00453d;      /* Dark Teal Background */
    color: #e8f3f1;                 /* Pale Mint Text */
    border: 2px solid #00fdeb;      /* Neon Cyan Border */
    
    /* Modern Shape and Spacing */
    border-radius: 50px;            /* Pill shape */
    padding: 10px 24px;             /* Comfortable touch area */
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    /* Layout */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;                      /* Space between text and icon */
    
    /* Transition setup */
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 69, 61, 0.3);
}

/* Specific styling for the icons to ensure smooth animation */
#btnLoadMoreCards i,
#btnShowLessCards i {
    transition: transform 0.3s ease;
    color: #00fdeb;                 /* Icon matches the border color initially */
}

/* -----------------------
   HOVER EFFECTS
----------------------- */

#btnLoadMoreCards:hover,
#btnShowLessCards:hover {
    background-color: #00fdeb;      /* Background becomes Neon Cyan */
    color: #00453d;                 /* Text becomes Dark Teal */
    border-color: #00fdeb;
    
    /* "Glow" effect using shadow */
    box-shadow: 0 0 15px rgba(0, 253, 235, 0.6); 
    transform: translateY(-2px);    /* Slight lift up */
}

/* Ensure icon changes color on hover to match text */
#btnLoadMoreCards:hover i,
#btnShowLessCards:hover i {
    color: #00453d;
}

/* Animate the Down Arrow on Hover */
#btnLoadMoreCards:hover i {
    transform: translateY(3px);     /* Arrow moves down */
}

/* Animate the Up Arrow on Hover */
#btnShowLessCards:hover i {
    transform: translateY(-3px);    /* Arrow moves up */
}

/* -----------------------
   FOCUS/ACTIVE STATES
   (For accessibility and click feedback)
----------------------- */
#btnLoadMoreCards:active,
#btnShowLessCards:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 69, 61, 0.3);
}

/* --- Buttons --- */
.unique-dashboard-wrapper .btn-cyber {
    background: #e8f3f1; /* Light Mint */
    color: #00453d; /* Dark Teal */
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 10px 20px;
    transition: 0.3s;
    width: 100%;
    display: block;
    text-decoration: none;
}

.unique-dashboard-wrapper .btn-cyber:hover {
    background: #00453d; /* Dark Teal */
    color: #00fdeb; /* Neon Cyan */
    box-shadow: 0 5px 15px rgba(0, 69, 61, 0.2);
    text-decoration: none;
}

/* --- Quick Action Icons Grid --- */
.unique-dashboard-wrapper .action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.unique-dashboard-wrapper .action-tile {
    background: #e8f3f1; /* Light Mint */
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    color: #00453d; /* Dark Teal */
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid transparent;
}

.unique-dashboard-wrapper .action-tile .ico-wrap {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #00453d; /* Dark Teal */
    display: inline-block;
    transition: 0.3s;
    background: #ffffff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.unique-dashboard-wrapper .action-tile:hover {
    background: #00453d; /* Dark Teal */
    color: #ffffff;
    transform: scale(1.05);
    text-decoration: none;
}

.unique-dashboard-wrapper .action-tile:hover .ico-wrap {
    color: #00fdeb; /* Neon Cyan */
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 15px #00fdeb;
}

.unique-dashboard-wrapper .action-tile span {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Utility Overrides */
.unique-dashboard-wrapper .d-none { display: none !important; }
.unique-dashboard-wrapper .text-center { text-align: center; }



/* Client area Design start */

 /* --- Unique Dashboard V2 Styles --- */

.unique-dash-v2 {
    font-family: 'Poppins', sans-serif;
    gap: 30px;
    display: flex;
    flex-direction: column;
}

/* 1. HERO BANNER */
.dash-hero {
    background-color: #00453d;
    background-image: radial-gradient(circle at 90% 10%, rgba(0, 253, 235, 0.1) 0%, transparent 20%);
    border-radius: 16px;
    padding: 30px 40px;
    color: #ffffff;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 69, 61, 0.2);
    overflow: hidden;
    margin-bottom: -40px; /* Pulls content up for layering effect */
    z-index: 1;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.user-welcome {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 813px){
    .user-welcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

}

.avatar-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #00fdeb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px; /* Keep this for fallback icon if needed */
    color: #00fdeb;
    box-shadow: 0 0 20px rgba(0, 253, 235, 0.2);
    overflow: hidden; /* Crucial: Clips the square image to a circle */
    padding: 0; /* Ensure image hits the edges */
}

/* New rule to make the image fill the circle */
.avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image doesn't stretch */
    border-radius: 50%;
}

.user-text h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
}

.company-tag {
    margin: 5px 0;
    color: #00fdeb;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.address-line {
    font-size: 0.85rem;
    opacity: 0.8;
    max-width: 400px;
    line-height: 1.4;
}

.hero-actions {
    display: flex;
    gap: 10px;
}

.hero-btn {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid transparent;
}

.hero-btn.edit-profile {
    background: #ffffff;
    color: #00453d;
}

.hero-btn.manage-contacts {
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    border-color: rgba(255,255,255,0.3);
}

.hero-btn.logout {
    background: transparent;
    color: #ff8b8b;
    border-color: #ff8b8b;
}

.hero-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-btn.edit-profile:hover {
    background: #00fdeb;
    color: #00453d;
}

.hero-btn.manage-contacts:hover {
    background: #ffffff;
    color: #00453d;
}

.hero-btn.logout:hover {
    background: #ff8b8b;
    color: #fff;
}

/* 2. ACTION DOCK (Shortcuts) */
.action-dock-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    position: relative;
    z-index: 5; /* Sit on top of hero/stats overlap */
}

.action-dock {
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 69, 61, 0.08);
    border: 1px solid #e8f3f1;
}

.dock-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #00453d;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.2s;
    min-width: 100px;
}

.dock-item .icon-box {
    font-size: 20px;
    margin-bottom: 5px;
    color: #00453d;
    transition: transform 0.2s;
}

.dock-item span {
    font-size: 0.8rem;
    font-weight: 700;
}

.dock-item:hover {
    background: #e8f3f1;
    color: #00453d;
    text-decoration: none;
}

.dock-item:hover .icon-box {
    transform: scale(1.2);
    color: #00fdeb; /* Neon icon on hover */
}

/* 3. STATS GRID ADJUSTMENTS */
/* Reuse existing .custom-dash-wrapper but adjust padding */
.custom-dash-wrapper {
    padding-top: 40px; /* Space for the dock */
    margin-top: 24px; /* Pull into dock area */
    background: #e8f3f1; /* Ensure background matches */
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .hero-actions {
        width: 100%;
        flex-wrap: wrap;
    }
    .hero-btn {
        flex: 1;
        justify-content: center;
    }
    .action-dock {
        width: 100%;
        justify-content: space-around;
        overflow-x: auto;
    }
}





/*Client details design start */



/* Scope styles to avoid global conflicts */
    .client-details-redesign {
        background-color: #e8f3f1;
        color: #00453d;
        padding: 30px;
        border-radius: 8px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    /* Card Styling */
    .client-details-redesign .design-card {
        background: #ffffff;
        border: none;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 69, 61, 0.08);
        margin-bottom: 30px;
        overflow: hidden;
        transition: transform 0.3s ease;
    }

    .client-details-redesign .design-card:hover {
        transform: translateY(-2px);
    }

    .client-details-redesign .card-header-custom {
        background-color: #00453d;
        padding: 20px 30px;
        border-bottom: 4px solid #00fdeb;
    }

    .client-details-redesign .card-title {
        color: #00fdeb;
        font-weight: 700;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 1.1rem;
    }

    .client-details-redesign .card-body {
        padding: 30px;
    }

    /* Form Inputs */
    .client-details-redesign label {
        color: #00453d;
        font-weight: 600;
        font-size: 0.9rem;
        margin-bottom: 8px;
        display: block;
    }

    .client-details-redesign .form-control {
        background-color: #f8fcfc;
        border: 1px solid #d1e3e1;
        border-radius: 8px;
        color: #00453d;
        padding: 12px 15px;
        height: auto;
        transition: all 0.3s ease;
        box-shadow: none;
    }

    .client-details-redesign .form-control:focus {
        background-color: #ffffff;
        border-color: #00fdeb;
        box-shadow: 0 0 0 4px rgba(0, 253, 235, 0.2);
    }

    .client-details-redesign .form-control:disabled {
        background-color: #e8f3f1;
        opacity: 0.7;
    }

    .client-details-redesign .custom-select {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2300453d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    }

    /* Buttons */
    .client-details-redesign .btn-primary {
        background-color: #00453d;
        border: 2px solid #00453d;
        color: #00fdeb;
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }

    .client-details-redesign .btn-primary:hover {
        background-color: #00fdeb;
        color: white;
        border-color: #00fdeb;
        box-shadow: 0 5px 15px rgba(0, 253, 235, 0.4);
    }

    .client-details-redesign .btn-default {
        background-color: transparent;
        color: #00453d;
        border: 2px solid #d1e3e1;
        padding: 12px 30px;
        border-radius: 50px;
        margin-left: 10px;
        transition: all 0.3s ease;
    }

    .client-details-redesign .btn-default:hover {
        border-color: #00453d;
        background-color: #e8f3f1;
    }

    /* Marketing Opt-in Toggle - Unique Animation */
    .marketing-toggle-wrapper {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-top: 15px;
    }

    .client-details-redesign .toggle-switch {
        position: relative;
        display: inline-block;
        width: 70px;
        height: 34px;
    }

    .client-details-redesign .toggle-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .client-details-redesign .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        transition: .4s;
        border-radius: 34px;
        border: 2px solid transparent;
    }

    .client-details-redesign .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 2px;
        background-color: white;
        transition: .4s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Bouncy effect */
        border-radius: 50%;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    /* Checked State */
    .client-details-redesign .toggle-switch input:checked + .slider {
        background-color: #00453d;
    }

    .client-details-redesign .toggle-switch input:checked + .slider:before {
        transform: translateX(36px);
        background-color: #00fdeb;
    }

    /* Labels inside toggle */
    .client-details-redesign .toggle-label-text {
        color: #00453d;
        font-weight: bold;
        font-size: 1.2rem;
        transition: color 0.3s;
    }
    
    .client-details-redesign .toggle-status-text {
        font-weight: bold;
        margin-left: 10px;
        color: #00453d;
    }

    /* Custom Checkboxes for Email Prefs */
    .client-details-redesign .custom-checkbox-label {
        display: flex;
        align-items: center;
        padding: 10px;
        border-radius: 8px;
        transition: background 0.2s;
        cursor: pointer;
    }
    .client-details-redesign .custom-checkbox-label:hover {
        background-color: #e8f3f1;
    }
    .client-details-redesign .custom-checkbox-label input {
        margin-right: 10px;
        accent-color: #00453d;
        width: 18px;
        height: 18px;
    }
    
    
    
    
/*My services page design start*/

/* Scope styles to the container */
    .unique-services-container {
        font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        background-color: #e8f3f1;
        padding: 30px;
        border-radius: 16px;
        overflow-y: auto;
        margin-left: 40px;
    }

    /* --- NEW BUTTON STYLES --- */
    .unique-services-container #custom-top-actions {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 25px;
        justify-content: flex-start;
    }

    .unique-services-container .custom-action-btn {
        background-color: #ffffff;
        color: #00453d;
        border: 0.5px solid #bbccca;
        padding: 15px 25px;
        font-weight: 700;
        font-size: 0.9em;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-decoration: none !important;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        cursor: pointer;
    }

    .unique-services-container .custom-action-btn i {
        margin-right: 8px;
        color: #00fdeb; /* Cyan Accent */
    }

    .unique-services-container .custom-action-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 69, 61, 0.15);
        background-color: #00453d;
        color: #00fdeb;
        border-color: #00453d;
    }

    .unique-services-container .custom-action-btn.active {
        background-color: #00453d;
        color: #ffffff;
        box-shadow: inset 0 2px 5px rgba(0,0,0,0.2);
    }

    @media (max-width: 768px) {
        .unique-services-container #custom-top-actions {
            gap: 10px; /* Smaller gap on mobile */
            justify-content: space-between;
        }

        .unique-services-container .custom-action-btn {
            /* Calculation: 50% width minus half the gap (5px). 
               This forces 2 buttons per row.
            */
            flex: 0 0 calc(50% - 5px); 
            width: calc(50% - 5px);
            
            padding: 12px 10px; /* Reduce padding to fit text */
            font-size: 0.8em; /* Slightly smaller font */
            text-align: center;
            flex-direction: column; /* Stack Icon on top of text for space saving */
        }

        .unique-services-container .custom-action-btn i {
            margin-right: 0;
            margin-bottom: 5px; /* Space between icon and text */
            font-size: 1.2em;
        }
    }
    
    /* --- EXTRA SMALL SCREENS (iPhone SE etc) --- */
    @media (max-width: 380px) {
        .unique-services-container .custom-action-btn {
            /* Force 1 button per row on very small screens if text is long */
            flex: 0 0 100%;
            width: 100%;
            flex-direction: row; /* Return to side-by-side */
        }
        .unique-services-container .custom-action-btn i {
            margin-right: 8px;
            margin-bottom: 0;
        }
    }

    /* Table Reset */
    .unique-services-container #tableServicesList {
        width: 100% !important;
        border-collapse: separate;
        border-spacing: 0 15px;
        background: transparent !important;
        border: none;
    }

    .unique-services-container #tableServicesList thead th {
        border-bottom: none;
        color: #00453d;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.85em;
        letter-spacing: 1px;
        padding: 10px 20px 10px 20px;
    }

    /* Row Card Design */
    .unique-services-container #tableServicesList tbody tr {
        background-color: #ffffff;
        box-shadow: 0 4px 15px rgba(0, 69, 61, 0.05);
        transition: all 0.3s ease;
        cursor: pointer;
        border: 1px solid transparent;
    }

    .unique-services-container #tableServicesList tbody tr:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 69, 61, 0.1);
        border-color: #00fdeb;
    }

    .unique-services-container #tableServicesList tbody td {
        border-top: none;
        padding: 20px;
        vertical-align: middle;
        color: #00453d;
    }

    .unique-services-container #tableServicesList tbody tr td:first-child {
        border-top-left-radius: 12px;
        border-bottom-left-radius: 12px;
        border-left: 4px solid transparent;
    }

    .unique-services-container #tableServicesList tbody tr td:last-child {
        border-top-right-radius: 12px;
        border-bottom-right-radius: 12px;
    }

    .unique-services-container #tableServicesList tbody tr:hover td:first-child {
        border-left: 4px solid #00fdeb;
    }

    .unique-services-container .service-product-title {
        font-size: 1.1em;
        font-weight: 700;
        color: #00453d;
    }

    .unique-services-container .service-domain-link {
        color: #00453d;
        opacity: 0.7;
        font-size: 0.9em;
        text-decoration: none;
        border-bottom: 1px dashed #00fdeb;
        transition: opacity 0.2s;
    }
    
    .unique-services-container .service-domain-link:hover {
        opacity: 1;
        text-decoration: none;
        color: #00453d;
    }

    .unique-services-container .service-price {
        font-weight: 700;
        color: #00453d;
        font-size: 1.05em;
    }

    .unique-services-container .service-cycle {
        display: block;
        font-size: 0.75em;
        color: #00453d;
        opacity: 0.6;
        text-transform: uppercase;
    }

    .unique-services-container .label.status {
        padding: 6px 15px;
        border-radius: 50px;
        font-size: 0.8em;
        font-weight: 600;
        text-transform: uppercase;
        display: inline-block;
        border: 1px solid rgba(0, 69, 61, 0.1);
    }

    .unique-services-container .label.status-active {
        background-color: rgba(0, 253, 235, 0.15);
        color: #00453d;
        border-color: #00fdeb;
    }
    
    .unique-services-container .label.status-pending, .label.status-suspended, .label.status-terminated {
        background-color: #e8f3f1;
        color: #00453d;
    }

    .unique-services-container #tableLoading {
        color: #00453d;
        font-size: 1.2em;
        padding: 40px;
    }

    .dataTables_wrapper .dataTables_paginate .paginate_button.current, 
    .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
        background: #00453d !important;
        color: #00fdeb !important;
        border: 1px solid #00453d !important;
        border-radius: 50%;
    }


/* =========================================
   MOBILE / TABLET CARD VIEW
   (Applied only on screens smaller than 992px)
   ========================================= */
@media screen and (max-width: 991px) {

    /* 1. Reset Table Display to Block (Cards) */
    .unique-services-container #tableServicesList, 
    .unique-services-container #tableServicesList tbody, 
    .unique-services-container #tableServicesList tr, 
    .unique-services-container #tableServicesList td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    /* 2. Hide Table Headers */
    .unique-services-container #tableServicesList thead {
        display: none;
    }

    /* 3. Card Container Styling (The Row) */
    .unique-services-container #tableServicesList tbody tr {
        position: relative;
        margin-bottom: 25px;
        border: 1px solid #e1eaea;
        border-radius: 12px;
        background: #ffffff;
        box-shadow: 0 5px 15px rgba(0, 69, 61, 0.05);
        padding-bottom: 10px;
    }

    /* Override Desktop Border Radius logic */
    .unique-services-container #tableServicesList tbody tr td:first-child,
    .unique-services-container #tableServicesList tbody tr td:last-child {
        border-radius: 0;
    }
    
    /* Top rounded corners for the top of the card */
    .unique-services-container #tableServicesList tbody tr td:first-child {
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }

    /* Hover Effect for Mobile Card */
    .unique-services-container #tableServicesList tbody tr:hover {
        transform: translateY(-3px);
        border-color: #00fdeb;
        /* Move the accent line to the whole card, not just the first cell */
        border-left: 1px solid #00fdeb; 
    }
    
    /* Remove the desktop left-border hover effect on the specific cell */
    .unique-services-container #tableServicesList tbody tr:hover td:first-child {
        border-left: none; 
    }

    /* 4. Cell Styling */
    .unique-services-container #tableServicesList tbody td {
        text-align: right; /* Content aligns right */
        padding: 12px 20px;
        border-bottom: 1px solid #f4f9f8;
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 45px;
    }

    /* Remove border from last item */
    .unique-services-container #tableServicesList tbody td:last-child {
        border-bottom: none;
    }

    /* 5. Inject Labels for Data (Since we can't change HTML) */
    
    /* Price Column (3rd TD) */
    .unique-services-container #tableServicesList tbody td:nth-of-type(3)::before {
        content: "Price / Cycle";
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.75em;
        color: #00453d;
        opacity: 0.8;
    }

    /* Next Due Date Column (4th TD) */
    .unique-services-container #tableServicesList tbody td:nth-of-type(4)::before {
        content: "Next Due Date";
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.75em;
        color: #00453d;
        opacity: 0.8;
    }

    /* Status Column (5th TD) */
    .unique-services-container #tableServicesList tbody td:nth-of-type(5)::before {
        content: "Status";
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.75em;
        color: #00453d;
        opacity: 0.8;
    }

    /* 6. Specific Layout Tweaks */

    /* TD 1: SSL/Icon - Position it absolutely at top right */
    .unique-services-container #tableServicesList tbody td:nth-of-type(1) {
        position: absolute;
        top: 15px;
        right: 15px;
        border: none;
        width: auto;
        padding: 0;
        background: transparent;
        z-index: 5;
    }

    /* TD 2: Product Title - Make it the header of the card */
    .unique-services-container #tableServicesList tbody td:nth-of-type(2) {
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Align text left */
        text-align: left;
        padding-top: 20px;
        padding-bottom: 15px;
        padding-right: 60px; /* Make room for the SSL icon */
        background-color: rgba(0, 253, 235, 0.05); /* Light cyan header bg */
    }

    .unique-services-container .service-product-title {
        font-size: 1.2em;
        margin-bottom: 5px;
        display: block;
    }

    /* Force centered elements in desktop to be flex-aligned on mobile */
    .unique-services-container .text-center {
        text-align: right !important;
    }
}
    
    
    /*Downloads page design start*/
    
/* --- Search Bar Styling --- */
    .kb-search-container {
        background: #ffffff;
        padding: 25px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 69, 61, 0.08);
        margin-bottom: 40px;
    }
    .kb-search-container input.form-control {
        background-color: #e8f3f1;
        border: 2px solid #e8f3f1;
        color: #00453d;
        height: 55px;
        border-radius: 10px 0 0 10px;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }
    .kb-search-container input.form-control:focus {
        background-color: #ffffff;
        border-color: #00fdeb;
        box-shadow: 0 0 0 3px rgba(0, 253, 235, 0.2);
    }
    .kb-search-container .btn-primary {
        background-color: #00453d;
        border-color: #00453d;
        color: #00fdeb;
        font-weight: 700;
        text-transform: uppercase;
        padding: 0 30px;
        border-radius: 0 10px 10px 0;
        transition: all 0.3s ease;
    }
    .kb-search-container .btn-primary:hover {
        background-color: #00fdeb;
        border-color: #00fdeb;
        color: white;
    }

    /* --- Category Cards --- */
    .kb-search-container .kb-category-card {
        background: #ffffff;
        border: 1px solid rgba(0, 69, 61, 0.05);
        border-radius: 15px;
        display: block;
        text-decoration: none !important;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
        position: relative;
        overflow: hidden;
    }
    .kb-search-container .kb-category-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 69, 61, 0.15);
        border-color: #00fdeb;
    }
    .kb-search-container .kb-category-card .card-body {
        padding: 30px;
    }
    .kb-search-container .kb-category-card i.fa-folder {
        font-size: 2.5rem;
        color: #00fdeb;
        margin-bottom: 20px;
        filter: drop-shadow(2px 4px 6px rgba(0,69,61,0.2));
    }
    .kb-search-container .kb-category-card h5 {
        font-weight: 700;
        font-size: 1.2rem;
        margin-bottom: 10px;
        color: #00453d;
    }
    .kb-search-container .kb-category-card p.text-muted {
        color: #5d7a75 !important;
        font-size: 0.95rem;
    }
    .kb-search-container .kb-category-card .badge-info {
        background-color: #e8f3f1;
        color: #00453d;
        border: 1px solid #00fdeb;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.85rem;
    }

    /* --- Popular Downloads Section --- */
    .kb-search-container .popular-downloads-card {
        background: #ffffff;
        border-radius: 15px;
        border: none;
        box-shadow: 0 5px 20px rgba(0, 69, 61, 0.05);
        overflow: hidden;
        margin-top: 30px;
    }
    .kb-search-container .popular-header {
        background-color: #00453d;
        padding: 20px 30px;
        border-bottom: 3px solid #00fdeb;
        display: flex;
        align-items: center;
    }
    .kb-search-container .popular-header h3 {
        color: #ffffff;
        font-size: 1.3rem;
        margin: 0;
        font-weight: 600;
    }
    .kb-search-container .popular-header i {
        color: #00fdeb;
        margin-right: 10px;
    }
    
    /* List Items */
    .kb-search-container .kb-article-item {
        border: none;
        border-bottom: 1px solid #e8f3f1;
        padding: 20px 30px;
        transition: background-color 0.2s ease, padding-left 0.2s ease;
    }
    .kb-search-container .kb-article-item:last-child {
        border-bottom: none;
    }
    .kb-search-container .kb-article-item:hover {
        background-color: #f0fdfc;
        padding-left: 35px;
        text-decoration: none;
    }
    .kb-search-container .kb-article-item-title {
        font-weight: 600;
        font-size: 1.1rem;
        color: #00453d;
        display: block;
        margin-bottom: 4px;
    }
    .kb-search-container .kb-article-item small {
        color: #5d7a75;
        font-size: 0.9rem;
    }
    .kb-search-container .kb-article-item .label-danger {
        background-color: #ff6b6b;
        color: white;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 0.75rem;
        vertical-align: middle;
    }

    /* --- Sidebar Customization --- */
    /* Use these specific selectors to override default WHMCS sidebar styles */
    .sidebar .panel {
        background-color: #ffffff;
        border: none;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 69, 61, 0.05);
        margin-bottom: 20px;
        overflow: hidden;
    }
    .sidebar .panel-heading {
        background-color: #00453d;
        color: #ffffff;
        padding: 15px 20px;
        border: none;
        border-bottom: 3px solid #00fdeb;
    }
    .sidebar .panel-title {
        font-weight: 700;
        font-size: 1.1rem;
        color: #ffffff;
    }
    .sidebar .panel-body, .sidebar .list-group {
        background-color: #ffffff;
    }
    .sidebar .list-group-item {
        border: none;
        border-bottom: 1px solid #e8f3f1;
        color: #00453d;
        padding: 12px 20px;
        transition: all 0.2s;
    }
    .sidebar .list-group-item:hover {
        background-color: #e8f3f1;
        color: #00453d;
        padding-left: 25px;
    }
    .sidebar .list-group-item.active {
        background-color: #e8f3f1 !important;
        color: #00453d;
        font-weight: bold;
        border-left: 5px solid #00453d;
    }
    .sidebar .list-group-item .badge {
        background-color: #00453d;
        color: #00fdeb;
    }
    
    
/*support ticket step1 design start*/

/* Main Container Wrapper */
    .support-selection-wrapper {
        background-color: #e8f3f1;
        padding: 40px;
        border-radius: 16px;
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        box-shadow: 0 10px 30px rgba(0, 69, 61, 0.05);
    }

    /* Header Styling */
    .support-selection-wrapper .support-header {
        margin-bottom: 35px;
        border-left: 5px solid #00fdeb; /* Cyan Accent */
        padding-left: 20px;
    }

    .support-selection-wrapper .support-header h3 {
        color: #00453d; /* Deep Teal */
        font-weight: 700;
        font-size: 28px;
        margin-bottom: 5px;
        margin-top: 0;
    }

    .support-selection-wrapper .support-header p {
        color: #5a7a76;
        margin: 0;
        font-size: 16px;
    }

    /* Grid Layout for Departments */
    .support-selection-wrapper .dept-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        justify-content: center;
    }

    @media (max-width: 800px) {
    .support-selection-wrapper .dept-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Larger screens (e.g., Desktops): 3 columns */
@media (max-width: 600px) {
    .support-selection-wrapper .dept-grid {
        grid-template-columns: 1fr;
    }
}

    /* Individual Department Card */
    .support-selection-wrapper .dept-card {
        background-color: #00453d; /* Deep Teal Background */
        color: #e8f3f1;
        border-radius: 12px;
        padding: 30px 20px;
        width: 100%;
        flex: 1 1 300px; /* Responsive flex basis */
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        border: 1px solid transparent;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        opacity: 0; /* Hidden initially for JS animation */
        animation: fadeIn 0.5s forwards;
    }

    /* Hover Effects */
    .support-selection-wrapper .dept-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 15px 30px rgba(0, 69, 61, 0.4);
        border-color: #00fdeb;
        text-decoration: none;
    }

    /* Icon Styling */
    .support-selection-wrapper .dept-icon {
        font-size: 32px;
        color: #00fdeb; /* Cyan Icon */
        margin-bottom: 15px;
        background-color: rgba(255, 255, 255, 0.1);
        width: 70px;
        height: 70px;
        line-height: 70px;
        border-radius: 50%;
        transition: background-color 0.3s;
    }

    .support-selection-wrapper .dept-card:hover .dept-icon {
        background-color: rgba(0, 253, 235, 0.2);
        color: #ffffff;
    }

    /* Text Styling inside Card */
    .support-selection-wrapper .dept-name {
        font-size: 20px;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 10px;
        display: block;
    }

    .support-selection-wrapper .dept-desc {
        font-size: 14px;
        color: #b0c4c1;
        line-height: 1.5;
        margin: 0;
    }

    /* Alert Box for No Departments */
    .support-selection-wrapper .no-dept-alert {
        background-color: #ffffff;
        color: #00453d;
        padding: 20px;
        border-radius: 8px;
        text-align: center;
        border: 1px solid #00453d;
        width: 100%;
    }


/*support ticket step2 design start*/
   
 /* Scope everything to this wrapper to avoid conflicts */
    .unique-ticket-design {
        background-color: white;
        padding: 40px 0;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .unique-ticket-design .card {
        border: none;
        border-radius: 15px;
        box-shadow: 0 15px 35px rgba(0, 69, 61, 0.1);
        background-color: #ffffff;
        overflow: hidden;
    }

    .unique-ticket-design .card-header-custom {
        background-color: #00453d;
        padding: 25px;
        border-bottom: 4px solid #00fdeb;
    }

    .unique-ticket-design h3.card-title {
        color: #00fdeb;
        margin: 0;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        font-size: 1.5rem;
    }

    .unique-ticket-design .card-body {
        padding: 40px;
    }

    /* Labels */
    .unique-ticket-design label {
        color: #00453d;
        font-weight: 600;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 8px;
    }

    /* Inputs & Selects */
    .unique-ticket-design .form-control {
        background-color: #f9fbfb;
        border: 2px solid #e8f3f1;
        color: #00453d;
        border-radius: 8px;
        padding: 12px 15px;
        height: auto; /* Fix for some themes forcing height */
        transition: all 0.3s ease;
    }

    .unique-ticket-design .form-control:focus {
        background-color: #ffffff;
        border-color: #00fdeb;
        box-shadow: 0 0 0 4px rgba(0, 253, 235, 0.15);
        color: #00453d;
    }

    .unique-ticket-design .form-control:disabled {
        background-color: #e8f3f1;
        opacity: 0.7;
        cursor: not-allowed;
    }

    /* Markdown Editor Area */
    .unique-ticket-design textarea.form-control {
        min-height: 200px;
    }

    /* File Attachments Styling */
    .unique-ticket-design .custom-file-label {
        background-color: #e8f3f1;
        color: #00453d;
        border: 2px solid #00453d;
        border-radius: 8px;
        transition: all 0.3s;
        cursor: pointer;
        padding-top: 10px; /* Adjust based on theme line-height */
    }

    .unique-ticket-design .custom-file-label::after {
        background-color: #00453d;
        color: #00fdeb;
        border-radius: 0 6px 6px 0;
    }

    .unique-ticket-design .custom-file-input:focus ~ .custom-file-label {
        border-color: #00fdeb;
        box-shadow: none;
    }

    .unique-ticket-design #btnTicketAttachmentsAdd {
        background-color: #00453d;
        color: #00fdeb;
        border: none;
        margin-left: 10px;
        border-radius: 8px;
    }

    .unique-ticket-design #btnTicketAttachmentsAdd:hover {
        background-color: #00fdeb;
        color: #00453d;
    }

    /* Submit Button Area */
    .unique-ticket-design .form-actions {
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid #e8f3f1;
    }

    .unique-ticket-design .btn-primary {
        background-color: #00453d;
        border-color: #00453d;
        color: #00fdeb;
        font-weight: bold;
        padding: 12px 30px;
        border-radius: 30px;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: transform 0.2s, box-shadow 0.2s;
        margin-top:0px;
    }

    .unique-ticket-design .btn-primary:hover, 
    .unique-ticket-design .btn-primary:focus {
        background-color: #00fdeb;
        border-color: #00fdeb;
        color: white;
        box-shadow: 0 5px 15px rgba(0, 253, 235, 0.4);
        transform: translateY(-2px);
    }

    .unique-ticket-design .btn-default {
        color: #00453d;
        background: transparent;
        border: 2px solid #e8f3f1;
        border-radius: 30px;
        font-weight: 600;
    }

    .unique-ticket-design .btn-default:hover {
        background-color: #e8f3f1;
    }

    /* Utility */
    .unique-ticket-design .section-divider {
        height: 1px;
        background-color: #e8f3f1;
        margin: 20px 0;
    }
    
   .dataTables_info{
    font-weight: 700;
    padding: 10px;
   } 
    
/* 1. Container Styling */
label {
  display: inline-flex;
  align-items: center;
  gap: 10px; /* Space between text and dropdown */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #374151; /* Dark gray text */
  font-weight: 500;
  cursor: pointer;
}

/* 2. The Dropdown Styling */
select.custom-select {
  appearance: none; /* Removes default browser arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 6px 32px 6px 12px; /* Extra right padding for the arrow */
  font-size: 14px;
  font-family: inherit;
  color: #111827;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
  
  /* Custom Arrow using Base64 SVG */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  
  /* Box Shadow for depth */
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* 3. Hover and Focus States */
select.custom-select:hover {
  border-color: #9ca3af;
}

select.custom-select:focus {
  border-color: #3b82f6; /* Blue border on click */
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1); /* Blue glow */
}





/* General Button Style */
.dataTables_paginate .page-item .page-link {
    border: none;
    border-radius: 50px !important; /* Forces pill shape */
    padding: 8px 16px;
    color: #6c757d;
    background-color: #f3f4f6;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: none;
    text-decoration: none;
}

/* Hover State */
.dataTables_paginate .page-item:not(.disabled) .page-link:hover {
    background-color: #e2e6ea;
    color: #212529;
    transform: translateY(-1px); /* Slight lift */
}

/* Active State (The selected page) */
.dataTables_paginate .page-item.active .page-link {
    background-color: #00453d; /* Modern Indigo */
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(79, 70, 229, 0.3); /* Glow effect */
}

/* Disabled State */
.dataTables_paginate .page-item.disabled .page-link {
    background-color: transparent;
    color: #adb5bd;
    cursor: default;
    pointer-events: none;
}




/* Table */
#tableQuotesList {
    width: 100%;
    border-collapse: separate; /* Allows for border-radius */
    border-spacing: 0;
    background-color: #ffffff; /* White card background */
    border-radius: 12px; /* Rounded corners */
    overflow: hidden; /* Clips the corners */
    box-shadow: 0 10px 25px rgba(0, 69, 61, 0.15); /* Soft shadow using the dark teal */
    margin-bottom: 20px;
    border: none;
}

/* 3. Header Styling */
#tableQuotesList thead {
    background-color: #00453d; /* Deep Teal */
    color: #ffffff;
}

#tableQuotesList thead th {
    padding: 18px 15px;
    text-align: left;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 14px;
    text-transform: uppercase;
    border-bottom: 4px solid #00fdeb; /* The Neon Cyan Accent */
    cursor: pointer;
    transition: background 0.3s ease;
}



/* 5. Body/Row Styling */
#tableQuotesList tbody td {
    padding: 16px 15px;
    color: #00453d; /* Dark Teal text */
    font-size: 15px;
    border-bottom: 1px solid #e8f3f1; /* Light divider */
    vertical-align: middle;
}

/* Striped effect (optional, removes pure white monotony) */
#tableQuotesList tbody tr:nth-of-type(even) {
    background-color: #f8fcfc;
}

/* Row Hover Effect */
#tableQuotesList tbody tr:hover {
    background-color: #e8f3f1; /* Light Mint hover */
}

/* 6. Empty State Styling ("No Records Found") */
#tableQuotesList td.dataTables_empty {
    text-align: center;
    padding: 40px;
    color: #668a86; /* Muted teal for empty state */
    font-style: italic;
    background-color: #ffffff;
}

/* Remove default Bootstrap/DataTables borders if they interfere */
#tableQuotesList.table-bordered {
    border: none;
}

/* Contacts design start */

/* Unique Theme CSS - Hardcoded Colors as requested */
    .unique-container {
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    /* Top Contact Selector Bar */
    .unique-top-bar {
        background-color: #ffffff;
        border-radius: 15px;
        padding: 20px;
        margin-bottom: 25px;
        box-shadow: 0 5px 20px rgba(0, 69, 61, 0.05);
        border-left: 6px solid #00fdeb;
    }

    .unique-label {
        color: #00453d;
        font-weight: 600;
        margin-bottom: 5px;
        display: block;
    }

    /* Main Content Cards */
    .unique-card {
        background-color: #ffffff;
        border-radius: 20px;
        border: none;
        box-shadow: 0 10px 40px rgba(0, 69, 61, 0.08);
        margin-bottom: 30px;
        overflow: hidden;
    }

    .unique-card-body {
        padding: 35px;
    }

    .unique-title {
        color: #00453d;
        font-weight: 800;
        font-size: 1.5rem;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 10px;
    }

    .unique-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 60px;
        height: 4px;
        background-color: #00fdeb;
        border-radius: 2px;
    }

    /* Form Inputs */
    .unique-input {
        display: block;
        width: 100%;
        padding: 12px 15px;
        font-size: 1rem;
        line-height: 1.5;
        color: #00453d;
        background-color: #e8f3f1;
        background-clip: padding-box;
        border: 2px solid transparent;
        border-radius: 10px;
        transition: all 0.3s ease-in-out;
        box-sizing: border-box;
    }

    .unique-input:focus {
        background-color: #ffffff;
        border-color: #00fdeb;
        outline: 0;
        box-shadow: 0 0 15px rgba(0, 253, 235, 0.2);
    }

    .unique-form-group {
        margin-bottom: 20px;
    }

    /* Buttons */
    .unique-btn-primary {
        background-color: #00453d;
        color: #00fdeb;
        border: none;
        padding: 12px 30px;
        font-weight: 700;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        transition: transform 0.2s, box-shadow 0.2s;
        box-shadow: 0 4px 6px rgba(0, 69, 61, 0.2);
    }

    .unique-btn-primary:hover {
        background-color: #00302a;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 8px 15px rgba(0, 69, 61, 0.3);
    }

    .unique-btn-outline {
        background-color: transparent;
        color: #00453d;
        border: 2px solid #00453d;
        padding: 10px 20px;
        font-weight: 600;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s;
    }

    .unique-btn-outline:hover {
        background-color: #00453d;
        color: #00fdeb;
    }

    .unique-btn-ghost {
        background-color: white;
        color: #00453d;
        border: 1px solid #00453d;
        padding: 12px 30px;
        font-weight: 700;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        transition: transform 0.2s, box-shadow 0.2s;
        box-shadow: 0 4px 6px rgba(0, 69, 61, 0.2);
    }

    .unique-btn-ghost:hover {
        background-color: #00302a;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 8px 15px rgba(0, 69, 61, 0.3);
    }

    /* Checkboxes */
    .unique-checkbox-wrapper {
        background-color: #e8f3f1;
        padding: 15px;
        border-radius: 10px;
        margin-top: 10px;
    }

    .unique-checkbox-wrapper label {
        color: #00453d;
        cursor: pointer;
        display: block;
        padding: 5px 0;
    }

    .unique-checkbox {
        accent-color: #00453d;
        margin-right: 10px;
        transform: scale(1.2);
    }

    /* Layout Helpers */
    .unique-mt { margin-top: 15px; }
    .unique-float-right { float: right; }
    .unique-text-center { text-align: center; }


/* Email list design start */

/* Unique Container Styling */
    .unique-table-container {
        background-color: #e8f3f1;
        padding: 30px;
        border-radius: 16px;
        box-shadow: 0 10px 25px rgba(0, 69, 61, 0.05);
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #00453d;
    }

    /* Table Styling */
    .table-unique {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0 10px; /* Spacing between rows */
        margin-bottom: 0;
        background-color: transparent;
    }

    .table-unique thead th {
        background-color: transparent;
        color: #00453d;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 1px;
        border: none;
        padding: 15px 25px;
    }

    .table-unique tbody tr {
        background-color: #ffffff;
        box-shadow: 0 4px 10px rgba(0, 69, 61, 0.03);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    /* Row Hover Effect */
    .table-unique tbody tr:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 15px rgba(0, 69, 61, 0.08);
        background-color: #ffffff;
    }

    /* Cell Styling */
    .table-unique tbody td {
        border: none;
        padding: 20px 25px;
        vertical-align: middle;
        color: #00453d;
        border-top: 1px solid transparent;
        border-bottom: 1px solid transparent;
    }

    /* Rounded Corners for Rows */
    .table-unique tbody tr td:first-child {
        border-top-left-radius: 12px;
        border-bottom-left-radius: 12px;
    }
    .table-unique tbody tr td:last-child {
        border-top-right-radius: 12px;
        border-bottom-right-radius: 12px;
    }

    /* Icons */
    .table-unique .fa-paperclip {
        color: #00453d;
        opacity: 0.6;
        margin-left: 8px;
    }

    /* Custom Button Styling */
    .btn-unique-neon {
        background-color: #00453d;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 50px; /* Pill shape */
        font-weight: 700;
        font-size: 0.85rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 253, 235, 0.3);
    }

    .btn-unique-neon:hover {
        background-color: #00453d;
        color: #00fdeb;
        box-shadow: 0 4px 15px rgba(0, 69, 61, 0.4);
    }

    /* Loading Spinner */
    .loading-unique {
        color: #00453d;
        padding: 40px;
        font-weight: 600;
    }


/* Invoice page design start */

 /* Renamed: invoices-wrapper -> billing-wrap */
    .billing-wrap {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        background: #E8F3F1;
        padding: 24px;
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0, 69, 61, 0.08);
        margin: 16px 0;
        border: 1px solid rgba(0, 253, 235, 0.18);
        overflow: hidden;
    }

    /* Renamed: invoices-header -> billing-head */
    .billing-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(0, 69, 61, 0.12);
    }

    /* Renamed: invoices-title -> billing-caption */
    .billing-caption {
        color: #00453d;
        font-size: 1.5rem;
        font-weight: 600;
        margin: 0;
    }

    /* Renamed: modern-table-container -> grid-container */
    .grid-container {
        overflow-x: auto;
        border-radius: 12px;
        background: #E8F3F1;
        
    }

    /* DataTables overrides + custom styling */
    table#tableInvoicesList {
        width: 100% !important;
        margin: 0 !important;
        border-collapse: separate !important;
        border-spacing: 0 !important;
        color: #00453d;
    }

    table#tableInvoicesList thead th {
        background: #00453d;
        color: white;
        font-weight: 500;
        text-transform: uppercase;
        font-size: 0.82rem;
        letter-spacing: 0.4px;
        padding: 14px 16px;
        border-bottom: none;
        white-space: nowrap;
    }

   

    table#tableInvoicesList tbody tr {
        background: white;
        transition: all 0.18s ease;
        cursor: pointer;
    }

    table#tableInvoicesList tbody tr:hover {
        background: rgba(0, 253, 235, 0.08);
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(0, 253, 235, 0.12);
    }

    table#tableInvoicesList tbody td {
        padding: 16px 18px;
        vertical-align: middle;
        border-bottom: 1px solid rgba(0, 69, 61, 0.06);
        color: #00453d;
    }

    /* Status badges - Renamed: status -> state-badge */
    .state-badge {
        display: inline-block;
        padding: 6px 12px;
        border-radius: 50px;
        font-size: 0.82rem;
        font-weight: 500;
        line-height: 1;
        min-width: 90px;
        text-align: center;
        text-transform: capitalize;
    }

    /* Renamed status prefixes */
    .state-badge-unpaid,
    .state-badge-draft,
    .state-badge-overdue { 
        background: #ffebee;
        color: #c62828;
    }

    .state-badge-paid {
        background: #e8f5e9;
        color: #2e7d32;
    }

    .state-badge-cancelled,
    .state-badge-refunded {
        background: #f3e5f5;
        color: #6a1b9a;
    }

    .state-badge-pending,
    .state-badge-partial {
        background: #fff3e0;
        color: #ef6c00;
    }

    /* Loading state */
    #tableLoading {
        padding: 80px 20px;
        text-align: center;
        color: #00453d;
        font-size: 1.1rem;
    }

    #tableLoading i {
        color: #00fdeb;
        margin-right: 10px;
        font-size: 1.6rem;
    }
    .dataTables_length{
        padding:5px;
    }

    /* Make rows more touch-friendly on mobile */

    @media (max-width: 768px) {
    /* 1. Reset Table Structure to Block */
    table#tableInvoicesList,
    table#tableInvoicesList tbody,
    table#tableInvoicesList tr,
    table#tableInvoicesList td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    /* 2. Hide Desktop Headers */
    table#tableInvoicesList thead {
        display: none;
    }

    /* 3. Style the "Card" (The Row) */
    table#tableInvoicesList tbody tr {
        background: #fff;
        margin-bottom: 20px;
        border-radius: 12px;
        border: 1px solid rgba(0, 69, 61, 0.12); /* Theme border color */
        box-shadow: 0 4px 12px rgba(0, 69, 61, 0.08); /* Soft shadow */
        padding: 0;
        overflow: hidden;
    }

    /* Hover effect for the card */
    table#tableInvoicesList tbody tr:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 253, 235, 0.15);
    }

    /* 4. Style the "Data" (The Cells) */
    table#tableInvoicesList tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: right;
        padding: 12px 16px;
        border-bottom: 1px solid rgba(0, 69, 61, 0.06);
        font-size: 0.95rem;
    }

    /* Remove border from the last item in the card */
    table#tableInvoicesList tbody td:last-child {
        border-bottom: none;
    }

    /* 5. Inject Labels using CSS (Since HTML cannot be changed) */
    
    /* Column 1: Invoice # */
    table#tableInvoicesList tbody td:nth-of-type(1)::before {
        content: "Invoice #";
        font-weight: 600;
        color: #00453d;
        opacity: 0.8;
    }

    /* Column 2: Date Created */
    table#tableInvoicesList tbody td:nth-of-type(2)::before {
        content: "Created";
        font-weight: 600;
        color: #00453d;
        opacity: 0.8;
    }

    /* Column 3: Date Due */
    table#tableInvoicesList tbody td:nth-of-type(3)::before {
        content: "Due Date";
        font-weight: 600;
        color: #00453d;
        opacity: 0.8;
    }

    /* Column 4: Total */
    table#tableInvoicesList tbody td:nth-of-type(4)::before {
        content: "Total";
        font-weight: 600;
        color: #00453d;
        opacity: 0.8;
    }

    /* Column 5: Status */
    table#tableInvoicesList tbody td:nth-of-type(5)::before {
        content: "Status";
        font-weight: 600;
        color: #00453d;
        opacity: 0.8;
    }

    /* 6. Specific Styling for Invoice Number (Header of the card) */
    table#tableInvoicesList tbody td:nth-of-type(1) {
        background-color: #00453d;
        color: #fff;
        font-weight: bold;
        padding: 14px 16px;
    }

    /* Change the label color for the header row specifically */
    table#tableInvoicesList tbody td:nth-of-type(1)::before {
        color: rgba(255, 255, 255, 0.9);
    }

    /* Highlight the Total Amount */
    table#tableInvoicesList tbody td:nth-of-type(4) {
        font-weight: 700;
        font-size: 1rem;
    }

    /* Adjust Badge positioning within the flex container */
    .state-badge {
        margin: 0;
    }
}
    @media (max-width: 768px) {
        table#tableInvoicesList tbody td {
            padding: 14px 12px;
        }
        .state-badge {
            min-width: 78px;
            padding: 5px 10px;
            font-size: 0.78rem;
        }
    }


/* User management design start */

/* Custom Design Palette */
    /* Primary Dark: #00453d */
    /* Accent Cyan: #00fdeb */
    /* Light Mint: #e8f3f1 */
    

    .custom-card {
        border: none;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 69, 61, 0.08);
        background-color: #ffffff;
        margin-bottom: 30px;
        overflow: hidden;
        border-top: 4px solid #00fdeb;
    }

    .custom-card-body {
        padding: 30px;
    }

    .custom-card-title {
        color: #00453d;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 2px solid #e8f3f1;
        padding-bottom: 15px;
        margin-bottom: 25px;
    }

    /* Table Styling */
    .custom-table {
        border-collapse: separate;
        border-spacing: 0;
        width: 100%;
        margin-bottom: 1rem;
        background-color: transparent;
    }

    .custom-table th {
        background-color: #00453d;
        color: #e8f3f1;
        border: none;
        padding: 15px;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.85rem;
    }

    .table-striped tbody tr:nth-of-type(odd) {
        background-color: #e8f3f1;
    }

    .custom-table td {
        border-top: 1px solid #e8f3f1;
        padding: 15px;
        vertical-align: middle;
        color: #00453d;
    }

    /* Text Colors & Icons */
    .custom-text-muted {
        color: #6c757d !important;
    }
    
    .fas.fa-shield {
        font-size: 1.1em;
        margin-left: 5px;
    }
    
    .custom-text-primary {
        color: #00453d !important; /* Replaced text-success to avoid semantic confusion */
    }

    /* Buttons */
    .custom-btn-default {
        background-color: #e8f3f1;
        color: #00453d;
        border: 1px solid #e8f3f1;
        transition: all 0.3s ease;
        font-weight: 600;
        display: inline-block;
        padding: 6px 12px;
        text-align: center;
        vertical-align: middle;
        cursor: pointer;
        user-select: none;
        border-radius: 4px;
    }

    .custom-btn-default:hover {
        background-color: #00fdeb;
        color: #00453d;
        border-color: #00fdeb;
        text-decoration: none;
    }

    .custom-btn-primary-a {
        background-color: #00453d;
        border: 1px solid #00453d;
        color: #ffffff;
        font-weight: 600;
        padding: 8px 20px;
        box-shadow: 0 4px 6px rgba(0, 69, 61, 0.2);
        display: inline-block;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .custom-btn-primary-a:hover, .custom-btn-primary-a:focus, .custom-btn-primary-a:active {
        background-color: #00fdeb;
        border-color: #00fdeb;
        color: #00453d;
        text-decoration: none;
    }

    .custom-btn-danger {
        background-color: #ffffff;
        color: #dc3545;
        border: 1px solid #dc3545;
        display: inline-block;
        padding: 6px 12px;
        border-radius: 4px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .custom-btn-danger:hover {
        background-color: #dc3545;
        color: #ffffff;
        text-decoration: none;
    }

    /* Labels and Badges */
    .custom-label-info {
        background-color: #1efd00;
        color: black;
        padding: 3px 8px;
        border-radius: 4px;
        font-size: 0.75em;
        font-weight: 700;
    }

    /* Forms */
    .custom-form-control {
        border: 2px solid #e8f3f1;
        border-radius: 6px;
        color: #00453d;
        padding: 10px;
        width: 100%;
        display: block;
    }

    .custom-form-control:focus {
        border-color: #00fdeb;
        box-shadow: 0 0 0 0.2rem rgba(0, 253, 235, 0.25);
        outline: none;
    }

    .custom-well {
        background-color: #e8f3f1;
        border: none;
        border-radius: 8px;
        padding: 20px;
        color: #00453d;
    }

    /* Modals */
    .custom-modal-header {
        background-color: #00453d !important;
        border-bottom: 4px solid #00fdeb;
        padding: 15px;
    }

    .custom-modal-content {
        border: none;
        border-radius: 12px;
        overflow: hidden;
        background-color: #fff;
    }
    
    .custom-modal-footer {
        background-color: #e8f3f1;
        padding: 15px;
        text-align: right;
        border-top: 1px solid #e5e5e5;
    }
    
    /* Layout Helpers */
    .form-check-inline {
        margin-right: 15px;
        color: #00453d;
        font-weight: 500;
    }



    /* Support ticket design start */

.listtable{
        overflow-y:auto;
    }

    .tickets-wrapper {
        background: #f8fcfa;                    /* very light mint-white */
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 38px rgba(0, 69, 61, 0.08);
        border: 1px solid #e8f3f1;
        margin: 1.5rem 0;
        font-family: system-ui, -apple-system, sans-serif;
    }

    .table-container {
        padding: 10px;
        background-color: #e8f3f1;
    }

    #tableTicketsList {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        margin: 0;
        background: #ffffff;
    }

    #tableTicketsList thead {
        background: linear-gradient(135deg, #00453d 0%, #005c52 100%);
        color: #e8f3f1;
    }

    #tableTicketsList th {
        padding: 16px 20px;
        font-weight: 600;
        text-align: left;
        font-size: 0.95rem;
        letter-spacing: 0.4px;
        text-transform: uppercase;
        border-bottom: 2px solid #00fdeb55;
    }

    #tableTicketsList th:first-child {
        border-top-left-radius: 12px;
    }

    #tableTicketsList th:last-child {
        border-top-right-radius: 12px;
    }

    #tableTicketsList tbody tr {
        transition: all 0.18s ease;
        cursor: pointer;
    }

    #tableTicketsList tbody tr:hover {
        background: #f0f9f7;
        transform: translateY(-1px);
        box-shadow: 0 4px 16px rgba(0, 253, 235, 0.12);
    }

    #tableTicketsList td {
        padding: 18px 20px;
        font-size: 0.97rem;
        color: #2d4f4a;
        border-bottom: 1px solid #e8f3f1;
        vertical-align: middle;
    }

    /* Ticket number + subject cell */
    .ticket-cell {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .ticket-number {
        font-weight: 700;
        color: #00453d;
        font-size: 1.05rem;
        letter-spacing: -0.3px;
    }

    .ticket-subject {
        color: #006d62;
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .ticket-subject:hover {
        color: #00fdeb;
    }

    .ticket-subject.unread {
        font-weight: 700;
        color: #00453d;
        position: relative;
    }

    .ticket-subject.unread::after {
        content: "•";
        color: #00fdeb;
        margin-left: 6px;
        font-size: 1.4rem;
        line-height: 1;
        vertical-align: middle;
    }

     /* Last reply column */
    .last-reply-cell {
        color: #006d62;
        font-weight: 500;
        text-align: center;
    }

    @media (max-width: 768px) {
        /* --- Reset Table to Block Layout --- */
        #tableTicketsList, 
        #tableTicketsList tbody, 
        #tableTicketsList tr, 
        #tableTicketsList td {
            display: block;
            width: 100%;
            box-sizing: border-box;
        }

        /* Hide the Table Header */
        #tableTicketsList thead {
            display: none;
        }

        /* --- Card Container Style (The Row) --- */
        #tableTicketsList tr {
            background: #ffffff;
            margin-bottom: 1.25rem;
            border-radius: 16px;
            border: 1px solid #e8f3f1;
            box-shadow: 0 8px 20px rgba(0, 69, 61, 0.08); /* Deep Teal shadow */
            padding: 20px;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        /* --- Standard Cells Style --- */
        #tableTicketsList td {
            padding: 12px 0;
            text-align: right;
            border-bottom: 1px dashed #e8f3f1;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.95rem;
        }

        #tableTicketsList td:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        /* --- Inject Labels using CSS (Since HTML edit is forbidden) --- */
        #tableTicketsList td::before {
            font-weight: 700;
            color: #00453d; /* Deep Teal */
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 0.5px;
            opacity: 0.7;
        }

        /* Assign Labels to specific columns by index */
        #tableTicketsList td:nth-of-type(1)::before { content: "Department"; }
        #tableTicketsList td:nth-of-type(3)::before { content: "Status"; }
        #tableTicketsList td:nth-of-type(4)::before { content: "Last Update"; }

        /* --- Special Styling for the Subject/Title Cell (Card Header) --- */
        #tableTicketsList td.ticket-cell {
            order: -1; /* Moves this cell to the top of the card */
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
            border-bottom: 2px solid #e8f3f1;
            padding: 0 0 15px 0;
            margin-bottom: 10px;
        }

        /* Hide the label for the title section */
        #tableTicketsList td.ticket-cell::before {
            display: none;
        }

        /* Link Wrapper inside Title */
        #tableTicketsList td.ticket-cell a {
            width: 100%;
            text-decoration: none;
        }

        /* Styling the Ticket Number (#ID) */
        .ticket-number {
            font-size: 0.75rem;
            background: #e8f3f1; /* Light Mint */
            color: #00453d;
            padding: 4px 10px;
            border-radius: 20px;
            margin-bottom: 8px;
            display: inline-block;
            font-weight: 700;
        }

        /* Styling the Subject Text */
        .ticket-subject {
            font-size: 1.2rem;
            font-weight: 700;
            color: #00453d;
            line-height: 1.4;
            display: block;
        }

        /* Unread Indicator adjustment for Card View */
        .ticket-subject.unread::after {
            position: absolute;
            top: 20px;
            right: 20px;
            margin: 0;
        }

        /* Adjust Status Badge positioning */
        .label.status {
            margin: 0;
            min-width: unset;
            padding: 6px 12px;
            font-size: 0.8rem;
        }
    }

/* View Ticket page design start */

   /* Background and Layout */
    .ticket-view-wrapper {
        background-color: #e8f3f1;
        padding: 30px;
        border-radius: 12px;
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    /* Header Card */
    .ticket-header-unique {
        background-color: #ffffff;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 69, 61, 0.08);
        border-top: 6px solid #00453d;
        padding: 25px;
        margin-bottom: 30px;
        position: relative;
        overflow: hidden;
    }
    
   
    .ticket-title-id {
        color: #00453d;
        font-size: 24px;
        font-weight: 800;
        letter-spacing: -0.5px;
        margin-bottom: 10px;
    }

    .ticket-subject-box {
        background-color: #e8f3f1;
        border-left: 4px solid #00fdeb;
        padding: 15px;
        border-radius: 0 8px 8px 0;
        color: #00453d;
        font-weight: 500;
    }

    /* Buttons */
    .btn-unique-primary {
        background-color: #00453d;
        color: #00fdeb;
        border: none;
        padding: 8px 20px !important;
        border-radius: 30px;
        font-weight: 600;
        transition: all 0.3s ease;
        text-transform: uppercase;
        font-size: 12px;
        letter-spacing: 1px;
    }

    .btn-unique-primary:hover {
        background-color: #00fdeb;
        color: #00453d;
        box-shadow: 0 5px 15px rgba(0, 253, 235, 0.4);
    }

    .btn-unique-danger {
        background-color: #fff;
        color: #dc3545;
        border: 1px solid #dc3545;
        border-radius: 30px;
        padding: 8px 20px;
        font-size: 12px;
        font-weight: 600;
    }

    .btn-unique-danger:hover {
        background-color: #dc3545;
        color: #fff;
    }

    /* Conversation / Replies */
    .reply-timeline {
        position: relative;
        padding-bottom: 20px;
    }

    .reply-card-unique {
        background-color: #ffffff;
        border-radius: 12px;
        margin-bottom: 25px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
        border: 1px solid #e8f3f1;
        transition: transform 0.2s;
    }

    /* User Reply Style */
    .reply-card-unique.client-reply {
        border-top: 6px solid #00453d;
        
    }

    /* Staff Reply Style */
    .reply-card-unique.staff-reply {
        border-left: 5px solid #00fdeb;
        background-color: #ffffff;
        margin-left: 20px;
        border-right: 1px solid #00fdeb;
    }

    .reply-header {
        padding: 15px 25px;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .reply-header.staff-bg {
        background-color: #f9ffff; /* Very subtle cyan tint */
    }

    .poster-name {
        font-weight: 700;
        color: #00453d;
        font-size: 16px;
    }

    .poster-date {
        font-size: 12px;
        color: #888;
        margin-left: 10px;
    }

    .requestor-badge {
        font-size: 10px;
        padding: 4px 10px;
        border-radius: 4px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .requestor-type-owner, .requestor-type-operator {
        background-color: #00453d;
        color: #00fdeb;
    }
    
    .requestor-type-subaccount {
        background-color: #e8f3f1;
        color: #00453d;
    }

    .reply-body {
        padding: 25px;
        color: #333;
        line-height: 1.6;
    }

    /* Attachments */
    .attachment-box {
        background-color: #f8fcfc;
        border: 1px dashed #00453d;
        border-radius: 8px;
        padding: 15px;
        margin-top: 15px;
    }
    
    .attachment-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .attachment-list li a {
        display: flex;
        align-items: center;
        background: #fff;
        padding: 8px 15px;
        border-radius: 6px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        color: #00453d;
        text-decoration: none;
        font-size: 13px;
    }
    
    .attachment-list li a i {
        color: #00fdeb;
        margin-right: 8px;
    }

    /* Ratings */
    .rating-unique .star {
        color: #ddd;
        cursor: pointer;
        font-size: 18px;
    }
    .rating-unique .star.active, .rating-unique .star:hover {
        color: #00fdeb;
        text-shadow: 0 0 5px #00453d;
    }
    .rating-done .star.active {
        color: #00fdeb;
    }

    /* Reply Form Area */
    .reply-area-wrapper {
        background-color: #ffffff;
        border-radius: 15px;
        border: 1px solid #00fdeb;
        box-shadow: 0 15px 40px rgba(0, 69, 61, 0.1);
        padding: 0;
        overflow: hidden;
    }

    .reply-area-header {
        background-color: #00453d;
        color: #ffffff;
        padding: 15px 25px;
    }
    
    .reply-area-header h3 {
        margin: 0;
        font-size: 18px;
        color: #00fdeb;
    }

    .reply-area-body {
        padding: 30px;
    }

    .form-control-unique {
        border: 2px solid #e8f3f1;
        border-radius: 8px;
        padding: 10px 15px;
        width: 100%;
        transition: border-color 0.3s;
    }

    .form-control-unique:focus {
        border-color: #00fdeb;
        outline: none;
        box-shadow: 0 0 0 3px rgba(0, 253, 235, 0.1);
    }
    
    .btn-submit-reply {
        background-color: #00fdeb;
        color: #00453d;
        font-weight: bold;
        padding: 12px 40px !important;
        border: none;
        border-radius: 50px;
        font-size: 16px;
        box-shadow: 0 4px 15px rgba(0, 253, 235, 0.3);
        transition: transform 0.2s;
    }
    
    .btn-submit-reply:hover {
        transform: translateY(-2px);
        background-color: #33ffef;
    }

    .btn-custom-cancel.btn-outline {
  /* Base Structure */
  background-color: transparent;
  color: #00453d; /* Deep Teal */
  border: 2px solid #00453d;
  padding: 10px 24px;
  border-radius: 50px; /* Pill shape */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 14px;
}

.btn-custom-cancel.btn-outline:hover {
  background-color: #00453d; /* Deep Teal Fills in */
  color: #00fdeb; /* Bright Cyan Text pops */
  box-shadow: 0 4px 15px rgba(0, 69, 61, 0.3);
  transform: translateY(-2px);
}



/* Invoice design start */
