 /* Unique classes with cs-benefits- prefix */
        .cs-benefits-section {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
           padding: 30px 0;
            opacity: 1;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .cs-benefits-section.cs-benefits-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .cs-benefits-container {
            width: 100%;
            padding: 0 20px;
        }
        
        .cs-benefits-title {
            text-align: center;
            font-size: 3.2rem;
            font-weight: 900;
            color: #17479e;
            margin-bottom: 18px;
            position: relative;
           
            transform: translateX(-50%);
        }
        
        .cs-benefits-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #17479e, #8b5cf6);
            border-radius: 2px;
        }
        
        .cs-benefits-subtitle {
            text-align: center;
            font-size: 1rem;
            color: #000;
            max-width: 700px;
            margin: 0px auto 40px;
            line-height: 1.7;
        }
        
        .cs-benefits-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: stretch;
        }
        
        .cs-benefits-card {
            background: white;
            border-radius: 28px;
            padding: 25px;
            box-shadow: 0 12px 50px rgba(0, 0, 0, 0.06);
            border: 1px solid #e2e8f0;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            position: relative;
            overflow: hidden;
        }
        
        .cs-benefits-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #17479e, #8b5cf6);
        }
        
        .cs-benefits-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }
        
        .cs-benefits-card h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: #17479e;
            margin-bottom: 20px;
        }
        
        .cs-benefits-card > p {
            color: #000;
            margin-bottom: 20px;
            line-height: 1.7;
            font-size: 1rem;
        }
        
        .cs-benefits-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 22px;
        }
        
        .cs-benefit-item {
            display: flex;
            align-items: flex-start;
            padding: 15px;
            border-radius: 16px;
            background-color: #f8fafc;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        
        .cs-benefit-item:hover {
            background-color: #f1f5f9;
            transform: translateY(-3px);
            border-color: #e2e8f0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
        }
        
        .cs-benefit-item i {
            color: #17479e;
            margin-right: 15px;
            margin-top: 2px;
            font-size: 1.3rem;
            background: rgba(59, 130, 246, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }
        
        .cs-benefit-item:hover i {
            background: rgba(59, 130, 246, 0.2);
            transform: scale(1.1);
        }
        
        .cs-benefits-side {
            display: flex;
            flex-direction: column;
        }
        
        .cs-benefits-side-content {
            background: linear-gradient(135deg, #17479e 0%, #1e293b 100%);
            border-radius: 28px;
            padding: 25px;
            color: white;
            height: 100%;
            box-shadow: 0 12px 50px rgba(15, 23, 42, 0.12);
            position: relative;
            overflow: hidden;
        }
        
        .cs-benefits-side-content::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
        }
        
        .cs-benefits-side-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #f8fafc;
            position: relative;
            z-index: 1;
        }
        
        .cs-benefits-side-content p {
            font-size: 1rem;
            line-height: 1.7;
            color: #cbd5e1;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .cs-benefits-pill {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 16px 28px;
            border-radius: 50px;
            backdrop-filter: blur(10px);
            width: fit-content;
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }
        
        .cs-benefits-pill:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-3px);
        }
        
        .cs-benefits-pill i {
            color: #60a5fa;
            margin-right: 14px;
            font-size: 1.3rem;
        }
        
        .cs-benefits-pill span {
            font-weight: 600;
            color: #f8fafc;
            font-size: 1.05rem;
        }
        
        /* Stats section with unique classes */
        .cs-benefits-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
            margin-top: 50px;
        }
        
        .cs-benefits-stat-item {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 18px;
            padding: 24px 15px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.12);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }
        
        .cs-benefits-stat-item:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-5px);
        }
        
        .cs-benefits-stat-number {
            font-size: 2.3rem;
            font-weight: 800;
            color: #60a5fa;
            margin-bottom: 8px;
            display: block;
        }
        
        .cs-benefits-stat-label {
            font-size: 0.95rem;
            color: #cbd5e1;
            font-weight: 500;
        }
        
        /* Responsive design */
        @media (max-width: 1100px) {
            .cs-benefits-wrap {
                gap: 35px;
            }
            
            .cs-benefits-card, .cs-benefits-side-content {
                padding: 35px;
            }
        }
        
        @media (max-width: 992px) {
            .cs-benefits-wrap {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .cs-benefits-list {
                grid-template-columns: 1fr;
            }
            
            .cs-benefits-stats {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .cs-benefits-title {
                font-size: 2.5rem;
            }
            
            .cs-benefits-subtitle {
                font-size: 1.15rem;
                margin: 30px auto 50px;
            }
            
            .cs-benefits-card, .cs-benefits-side-content {
                padding: 30px 25px;
                border-radius: 22px;
            }
            
            .cs-benefits-stats {
                grid-template-columns: 1fr;
                gap: 15px;
                margin-top: 40px;
            }
            
            .cs-benefits-section {
                padding: 60px 0;
            }
        }
        
        @media (max-width: 480px) {
            .cs-benefits-title {
                font-size: 2.2rem;
            }
            
            .cs-benefits-subtitle {
                font-size: 1.1rem;
            }
            
            .cs-benefits-card h3, 
            .cs-benefits-side-content h3 {
                font-size: 1.7rem;
            }
        }
        
        /* Animation for benefit items */
        @keyframes cs-benefits-fadeIn {
            from {
                opacity: 0;
                transform: translateY(15px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .cs-benefit-item {
            animation: cs-benefits-fadeIn 0.5s ease forwards;
            opacity: 0;
        }
        
        .cs-benefit-item:nth-child(1) { animation-delay: 0.1s; }
        .cs-benefit-item:nth-child(2) { animation-delay: 0.2s; }
        .cs-benefit-item:nth-child(3) { animation-delay: 0.3s; }
        .cs-benefit-item:nth-child(4) { animation-delay: 0.4s; }
        .cs-benefit-item:nth-child(5) { animation-delay: 0.5s; }
        .cs-benefit-item:nth-child(6) { animation-delay: 0.6s; }
        .cs-benefit-item:nth-child(7) { animation-delay: 0.7s; }
        .cs-benefit-item:nth-child(8) { animation-delay: 0.8s; }

        /* Main color variables - based on professional tech/engineering logo */
        :root {
            --primary-blue: #17479e;       /* Strong professional blue */
            --primary-dark: #17479e;       /* Dark navy for headings */
            --primary-light: #17479e;      /* Light blue for accents */
            --secondary-teal: #e11b22;     /* Teal for highlights */
            --accent-orange: #ff6b35;      /* Orange for CTAs */
            --neutral-light: #f0f7ff;      /* Light blue background */
            --neutral-mid: #e6f2ff;        /* Medium blue background */
            --neutral-dark: #1e3a5f;       /* Dark text */
            --neutral-text: #475569;       /* Regular text */
            --success: #22c55e;            /* Green for success states */
            --warning: #f59e0b;            /* Amber for warnings */
        }
        
        /* Section styling with logo colors */
        .cs-roles-section {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 40px 0;
            background: linear-gradient(180deg, #ffffff 0%, var(--neutral-light) 100%);
            border-radius: 32px;
            box-shadow: 0 20px 80px rgba(10, 37, 64, 0.08);
            position: relative;
            overflow: hidden;
            border: 1px solid var(--neutral-mid);
			margin-top: 40px;
        }
        
        .cs-roles-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 102, 204, 0.08) 0%, transparent 70%);
            z-index: 0;
        }
        
        .cs-roles-section::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 163, 163, 0.06) 0%, transparent 70%);
            z-index: 0;
        }
        
        .cs-roles-container {
            width: 100%;
            padding: 0 40px;
            position: relative;
            z-index: 1;
        }
        
        /* Typography with logo colors */
        .cs-roles-title {
            text-align: center;
            font-size: 3.2rem;
            font-weight: 900;
            color:#17479e;
            margin-bottom: 16px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }
        
        .cs-roles-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--secondary-teal));
            border-radius: 2px;
        }
        
        .cs-roles-subtitle {
            text-align: center;
            font-size: 1.25rem;
            color: var(--neutral-text);
            max-width: 700px;
            margin: 40px auto 20px;
            line-height: 1.7;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }
        
        /* Modern icon styling */
        .cs-icon-modern {
            font-size: 1.1em;
            vertical-align: middle;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        }
        
        .cs-icon-large {
            font-size: 2.8rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }
        
        /* Filter Section */
        .cs-roles-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 20px;
            background: white;
            padding: 24px 32px;
            border-radius: 20px;
            box-shadow: 0 8px 24px rgba(0, 102, 204, 0.06);
            border: 1px solid var(--neutral-mid);
        }
        
        .cs-roles-count {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary-dark);
            background: rgba(0, 102, 204, 0.1);
            padding: 12px 24px;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            backdrop-filter: blur(10px);
        }
        
        .cs-roles-filters {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        
        .cs-roles-search-wrapper {
            position: relative;
            width: 280px;
        }
        
        .cs-roles-search {
            padding: 14px 20px 14px 48px;
            border: 2px solid var(--neutral-mid);
            border-radius: 12px;
            font-size: 1rem;
            width: 100%;
            transition: all 0.3s ease;
            background: white;
            color: var(--neutral-dark);
        }
        
        .cs-roles-search:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
        }
        
        .cs-roles-search::placeholder {
            color: #94a3b8;
        }
        
        .cs-search-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary-blue);
            font-size: 1rem;
        }
        
        .cs-roles-select-wrapper {
            position: relative;
        }
        
        .cs-roles-select {
            padding: 14px 20px 14px 48px;
            border: 2px solid var(--neutral-mid);
            border-radius: 12px;
            font-size: 1rem;
            background: white;
            color: var(--neutral-dark);
            cursor: pointer;
            min-width: 180px;
            transition: all 0.3s ease;
            appearance: none;
        }
        
        .cs-roles-select:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
        }
        
        .cs-select-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary-blue);
            font-size: 1rem;
            pointer-events: none;
        }
        
        /* Role Cards */
        .cs-roles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
            gap: 30px;
        }
        
        .cs-role-card {
            background: white;
            border-radius: 20px;
            padding: 32px;
            box-shadow: 0 8px 30px rgba(0, 102, 204, 0.04);
            border: 1px solid var(--neutral-mid);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .cs-role-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary-blue), var(--secondary-teal));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .cs-role-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 50px rgba(0, 102, 204, 0.12);
            border-color: #b3d9ff;
        }
        
        .cs-role-card:hover::before {
            opacity: 1;
        }
        
        .cs-role-card:hover .cs-role-link {
            background: linear-gradient(90deg, var(--primary-blue), var(--secondary-teal));
        }
        
        /* Meta chips with modern icons */
        .cs-role-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .cs-role-chip {
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s ease;
        }
        
        .cs-role-chip:hover {
            transform: translateY(-2px);
        }
        
        /* Department-specific colors */
        .cs-chip-mechanical {
            background: rgba(0, 102, 204, 0.12);
            color: var(--primary-blue);
            border: 1px solid rgba(0, 102, 204, 0.2);
        }
        
        .cs-chip-electronics {
            background: rgba(0, 163, 163, 0.12);
            color: var(--secondary-teal);
            border: 1px solid rgba(0, 163, 163, 0.2);
        }
        
        .cs-chip-software {
            background: rgba(30, 58, 95, 0.12);
            color: var(--neutral-dark);
            border: 1px solid rgba(30, 58, 95, 0.2);
        }
        
        .cs-chip-program {
            background: rgba(255, 107, 53, 0.12);
            color: var(--accent-orange);
            border: 1px solid rgba(255, 107, 53, 0.2);
        }
        
        .cs-chip-location {
            background: rgba(77, 148, 255, 0.12);
            color: var(--primary-light);
            border: 1px solid rgba(77, 148, 255, 0.2);
        }
        
        .cs-chip-remote {
            background: rgba(0, 163, 163, 0.15);
            color: var(--secondary-teal);
            border: 1px solid rgba(0, 163, 163, 0.25);
        }
        
        .cs-chip-fulltime {
            background: rgba(34, 197, 94, 0.12);
            color: var(--success);
            border: 1px solid rgba(34, 197, 94, 0.2);
        }
        
        .cs-role-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 16px;
            line-height: 1.4;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        
        .cs-role-card h3::before {
            content: '';
            display: inline-block;
            width: 4px;
            height: 24px;
            background: var(--primary-blue);
            border-radius: 2px;
            flex-shrink: 0;
        }
        
        .cs-role-card p {
            color: var(--neutral-text);
            margin-bottom: 28px;
            line-height: 1.6;
            flex-grow: 1;
            padding-left: 16px;
        }
        
        .cs-role-apply {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            padding-top: 20px;
            border-top: 1px solid var(--neutral-mid);
        }
        
        .cs-role-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 24px;
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-light));
            color: white;
            text-decoration: none;
            border-radius: 10px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .cs-role-link:hover {
            transform: translateX(5px);
            box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
            gap: 12px;
        }
        
        .cs-role-mail {
            font-size: 0.9rem;
            color: var(--neutral-text);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        /* Empty state */
        .cs-roles-empty {
            grid-column: 1 / -1;
            text-align: center;
            padding: 60px 20px;
            background: var(--neutral-light);
            border-radius: 20px;
            border: 2px dashed var(--neutral-mid);
        }
        
        .cs-roles-empty i {
            font-size: 3rem;
            color: var(--primary-light);
            margin-bottom: 20px;
        }
        
        .cs-roles-empty h3 {
            font-size: 1.5rem;
            color: var(--neutral-dark);
            margin-bottom: 10px;
        }
        
        .cs-roles-empty p {
            color: var(--neutral-text);
            max-width: 500px;
            margin: 0 auto;
        }
        
        /* Company branding footer */
        .cs-roles-branding {
            margin-top: 60px;
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--neutral-mid);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }
        
        .cs-roles-branding p {
            color: var(--neutral-text);
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .cs-roles-branding strong {
            color: var(--primary-dark);
            font-weight: 800;
        }
        
        .cs-brand-icon {
            font-size: 1.4rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Responsive Design */
        @media (max-width: 1100px) {
            .cs-roles-grid {
                grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            }
        }
        
        @media (max-width: 900px) {
            .cs-roles-top {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .cs-roles-filters {
                width: 100%;
            }
            
            .cs-roles-search-wrapper {
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .cs-roles-section {
                padding: 60px 0;
                border-radius: 24px;
            }
            
            .cs-roles-container {
                padding: 0 24px;
            }
            
            .cs-roles-title {
                font-size: 2.5rem;
                flex-direction: column;
                gap: 8px;
            }
            
            .cs-roles-subtitle {
                font-size: 1.1rem;
                margin: 30px auto 50px;
                flex-direction: column;
                gap: 8px;
            }
            
            .cs-roles-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            
            .cs-roles-select {
                min-width: 160px;
            }
        }
        
        @media (max-width: 480px) {
            body {
                padding: 20px 10px;
            }
            
            .cs-roles-section {
                padding: 40px 0;
                border-radius: 20px;
            }
            
            .cs-roles-container {
                padding: 0 20px;
            }
            
            .cs-roles-title {
                font-size: 2rem;
            }
            
            .cs-roles-filters {
                flex-direction: column;
            }
            
            .cs-roles-select-wrapper {
                width: 100%;
            }
            
            .cs-roles-select {
                width: 100%;
            }
            
            .cs-role-card {
                padding: 24px;
            }
            
            .cs-role-apply {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
        }
        
        /* Animation */
        @keyframes cs-role-fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .cs-role-card {
            animation: cs-role-fadeIn 0.5s ease forwards;
            opacity: 0;
        }
        
        .cs-role-card:nth-child(1) { animation-delay: 0.1s; }
        .cs-role-card:nth-child(2) { animation-delay: 0.2s; }
        .cs-role-card:nth-child(3) { animation-delay: 0.3s; }
        .cs-role-card:nth-child(4) { animation-delay: 0.4s; }
        .cs-role-card:nth-child(5) { animation-delay: 0.5s; }
        .cs-role-card:nth-child(6) { animation-delay: 0.6s; }
		
		.cs-roles-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
    background: white;
    padding: 24px 32px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.06);
    border: 1px solid var(--neutral-mid);
    width: 100%; /* Ensure it uses full width */
}

/* Alternative: Make search input even more prominent */
.cs-roles-search-wrapper {
    position: relative;
    flex: 2; /* Takes twice the space of dropdowns */
    min-width: 300px;
}

.cs-roles-select-wrapper {
    position: relative;
    flex: 1; /* Dropdowns take equal but less space */
    min-width: 180px;
}

.cs-roles-filters {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
    flex: 1;
}

.cs-roles-search-wrapper {
    position: relative;
    flex: 3; /* Takes 3x the space of dropdowns */
    min-width: 300px;
}

.cs-roles-select-wrapper {
    position: relative;
    flex: 1; /* Each dropdown takes equal but smaller space */
    min-width: 180px;
}
@media (max-width: 900px) {
    .cs-roles-top {
        flex-direction: column;
        align-items: stretch; /* Change from flex-start to stretch */
    }
    
    .cs-roles-filters {
        flex-direction: column;
        gap: 12px;
    }
    
    .cs-roles-search-wrapper,
    .cs-roles-select-wrapper {
        width: 100%;
        flex: none; /* Remove flex on mobile */
    }
    
    .cs-roles-search {
        width: 100%;
    }
    
    .cs-roles-select {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cs-roles-search-wrapper,
    .cs-roles-select-wrapper {
        min-width: 100%; /* Full width on smallest screens */
    }
}