:root {
            --primary-dark: #02153D;
            --primary-purple: #4B227a;
            --primary-teal: #0197AF;
            --primary-cyan: #00EED0;
        }
        
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #ffffff;
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Text Color */
.text-cyan {
    color: #00EED0;
}

/* Navigation Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 238, 208, 0.2);
    box-shadow: 0 2px 20px rgba(2, 21, 61, 0.3);
    z-index: 1050;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar .nav-link {
    color: #4B227a !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar .nav-link:hover {
    color: var(--primary-cyan) !important;
    transform: translateY(-1px);
}

.navbar .nav-link.active {
    color: var(--primary-teal) !important;
    font-weight: 600;
}

.dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 238, 208, 0.2);
    box-shadow: 0 8px 32px rgba(2, 21, 61, 0.3);
}

.dropdown-item {
    color: #4B227a !important;
    transition: all 0.3s ease;
    z-index: 1051;
}

.dropdown-item:hover {
    background: rgba(0, 238, 208, 0.1);
    color: var(--primary-cyan) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-purple) 50%, var(--primary-teal) 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    
}

.hero-content {
    position: relative;
    z-index: 0;
}

.hero-section h1 {
    color: white;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-cyan) 100%);
    border: none;
    color: var(--primary-dark);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 238, 208, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #017a94 0%, #00d4b8 100%);
    transform: translateY(-2px);
    color: var(--primary-dark);
    box-shadow: 0 8px 25px rgba(0, 238, 208, 0.4);
}

.btn-support {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #b36ee8 55%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 238, 208, 0.2);
}

.btn-support:hover {
    background: linear-gradient(135deg, #d9c1ec 0%, #00d4b8 100%);
    transform: translateY(-2px);
    color: var(--primary-dark);
    box-shadow: 0 8px 25px rgba(0, 238, 208, 0.4);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-dark);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Glass Card Effect */
.glass-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(2, 21, 61, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(2, 21, 61, 0.15);
    border-color: rgba(0, 238, 208, 0.3);
}

/* Search Section */
.search-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
}

.search-section h2 {
    color: var(--primary-dark);
    font-weight: 700;
}

.search-section .text-muted {
    color: #6c757d !important;
}

.form-control {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: white;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 0.2rem rgba(0, 238, 208, 0.25);
    transform: translateY(-2px);
}

/* Features Section */
.features-section {
    background: white;
    padding: 70px 0;
    position: relative;
}

.features-section h2 {
    color: var(--primary-dark);
    font-weight: 700;
}

.features-section .text-muted {
    color: #6c757d !important;
}

.feature-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.glass-card h4 {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.glass-card p {
    color: #666;
    font-weight: 400;
}

/* Stats Section */
.stats-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    color: var(--primary-dark) !important;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-purple) 50%, var(--primary-teal) 100%);
    padding: 80px 0;
    position: relative;
}

.cta-section h3 {
    color: white;
    font-weight: 700;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
    background: rgba(2, 21, 61, 0.95) !important;
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(0, 238, 208, 0.2);
}

footer h5 {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

footer .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.social-links a {
    color: rgba(0, 238, 208, 0.8) !important;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-cyan) !important;
    transform: translateY(-2px);
}

/* Hero Icon Animation */
.hero-icon {
    animation: float 6s ease-in-out infinite;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.1);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Hero Icon Animation */
.hero-icon-sm {
    animation: float 6s ease-in-out infinite;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .btn-lg {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Review Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.gradient-bg {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-purple), var(--primary-teal));
    min-height: 100vh;
}

.gradient-spacer {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-purple), var(--primary-teal));
    min-height: 10vh;
}


.btn-outline-primary {
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
}

.btn-outline-primary:hover {
    background-color: var(--primary-cyan);
    border-color: var(--primary-cyan);
    color: var(--primary-dark);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-cyan));
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-teal));
}

.text-warning {
    color: #ffc107 !important;
}

.review-content {
    position: relative;
}

.blurred-content {
    filter: blur(4px);
    opacity: 0.7;
}


/* InfluencerRate Global Styles */
:root {
    --primary-dark: #02153D;
    --primary-purple: #4B227a;
    --primary-teal: #0197AF;
    --primary-cyan: #00EED0;
}

/* Glass Card Effects */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Gradient Backgrounds */
.gradient-bg {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-purple), var(--primary-teal));
    min-height: 100vh;
}

.gradient-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-purple));
    color: white;
    padding: 60px 0;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-cyan));
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-teal));
    transform: translateY(-1px);
}

.btn-outline-primary {
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-cyan);
    border-color: var(--primary-cyan);
    color: var(--primary-dark);
    transform: translateY(-1px);
}

/* Text Colors */
.text-warning {
    color: #ffc107 !important;
}

/* Locked Content Effects */
.blurred-content {
    filter: blur(6px);
    opacity: 0.7;
    pointer-events: none;
}

.locked-overlay {
    position: relative;
}

.locked-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    pointer-events: none;
}

.lock-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    color: var(--primary-cyan);
    font-size: 2rem;
    opacity: 0.9;
}



/* Search Specific Styles */
.search-stats {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.search-form {
    max-width: 600px;
    margin: 0 auto;
}

.search-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.search-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-cyan);
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(0, 238, 208, 0.25);
}

.search-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Modal Styles */
.modal-glass {
    background: rgba(2, 21, 61, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
}

/* Popular Search Tags */
.search-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0.25rem;
}

.search-tag:hover {
    background: var(--primary-cyan);
    color: var(--primary-dark);
    border-color: var(--primary-cyan);
    transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gradient-header {
        padding: 40px 0;
    }
    
    .glass-card {
        margin-bottom: 1rem;
    }
    
    .search-stats {
        text-align: center;
    }
    
    .search-stats .col-md-6:last-child {
        margin-top: 1rem;
    }
}

/* Utility Classes */
.text-primary-cyan {
    color: var(--primary-cyan) !important;
}

.bg-primary-dark {
    background-color: var(--primary-dark) !important;
}

.border-primary-cyan {
    border-color: var(--primary-cyan) !important;
}


/* InfluencerRate Global Styles */
:root {
    --primary-dark: #02153D;
    --primary-purple: #4B227a;
    --primary-teal: #0197AF;
    --primary-cyan: #00EED0;
}

/* Glass Card Effects */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Gradient Backgrounds */
.gradient-bg {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-purple), var(--primary-teal));
    min-height: 100vh;
}

.gradient-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-purple));
    color: white;
    padding: 60px 0;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-cyan));
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-teal));
    transform: translateY(-1px);
}

.btn-outline-primary {
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-cyan);
    border-color: var(--primary-cyan);
    color: var(--primary-dark);
    transform: translateY(-1px);
}

/* Text Colors */
.text-warning {
    color: #ffc107 !important;
}

/* Locked Content Effects */
.blurred-content {
    filter: blur(6px);
    opacity: 0.7;
    pointer-events: none;
}

.locked-overlay {
    position: relative;
}

.locked-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    pointer-events: none;
}

.lock-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    color: var(--primary-cyan);
    font-size: 2rem;
    opacity: 0.9;
}


/* Search Specific Styles */
.search-stats {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.search-form {
    max-width: 600px;
    margin: 0 auto;
}

.search-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.search-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-cyan);
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(0, 238, 208, 0.25);
}

.search-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Modal Styles */
.modal-glass {
    background: rgba(2, 21, 61, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
}

/* Popular Search Tags */
.search-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0.25rem;
}

.search-tag:hover {
    background: var(--primary-cyan);
    color: var(--primary-dark);
    border-color: var(--primary-cyan);
    transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gradient-header {
        padding: 40px 0;
    }
    
    .glass-card {
        margin-bottom: 1rem;
    }
    
    .search-stats {
        text-align: center;
    }
    
    .search-stats .col-md-6:last-child {
        margin-top: 1rem;
    }
}

/* Rating Card Specific Styles */
.rating-breakdown {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
}

.rating-item {
    margin-bottom: 0.5rem;
}

.rating-value {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.rating-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.performance-indicators {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.75rem;
}

.indicator {
    display: flex;
    align-items: center;
}

.bg-primary-teal {
    background-color: var(--primary-teal) !important;
}

/* Rating Detail Page Styles */
.rating-component {
    margin-bottom: 1.5rem;
}

.progress {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.metric-card {
    padding: 1rem;
    text-align: center;
}

.review-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-cyan);
}

.rating-meta .meta-item,
.campaign-summary .summary-item {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rating-meta .meta-item:last-child,
.campaign-summary .summary-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Influencer Profile */
.profile-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-purple) 50%, var(--primary-teal) 100%);
    color: white;
    padding: 10px 0 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(1px);
}

.profile-content {
    position: relative;
    z-index: 0;
}

.profile-header h1 {
    color: white;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.profile-header .lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Review Profile */
.rating-header {
    color: white;
    padding: 10px 0 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.rating-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    
}

.rating-content {
    position: relative;
    z-index: 0;
}

.rating-header h1 {
    color: white;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    z-index:2;
}

.rating-header .lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Dashboard Styling */
/* Glass Card Effect */
.glass-card-dash {
    background: rgba(255, 255, 255, 0.95);
    color:#00EED0;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(2, 21, 61, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.glass-card-dash h4,h1, h2 {
    color: var(--primary-teal) !important;
    font-weight: 800;
    
    margin-bottom: 1.5rem;
}


.glass-card-dash:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(2, 21, 61, 0.15);
    border-color: rgba(69, 238, 216, 0.7);
    border-width: 2px;
}

/* FEEDBACK */
.form-control-support {
    background: white;
    border: 1.5px solid #e9ecef; /* slightly thinner than 2px */
    border-radius: 8px; /* reduced from 25px */
    padding: 10px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none; /* remove default outline */
}

/* Focus effect for text inputs */
.form-control-support:focus {
    background: white;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 0.2rem rgba(0, 238, 208, 0.25); /* cyan highlight */
    transform: translateY(-1px);
}

/* Select / dropdown */
.form-select-support {
    border: 1.5px solid #e9ecef; /* visible border */
    border-radius: 8px;
    padding: 10px 15px;
    background-color: white;
    color: var(--primary-teal);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    appearance: none; /* remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-clip: padding-box; /* ensures border is visible */
    box-sizing: border-box;
}

/* Focus effect for dropdown */
.form-select-support:focus {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 0.25rem rgba(0, 238, 208, 0.25);
    transform: translateY(-1px);
}

/* Options inside dropdown */
.form-select-support option {
    background-color: white;
    color: var(--primary-purple);
}

/* Optional: add a small arrow indicator for select */
.form-select-support::-ms-expand {
    display: none; /* hide default arrow in IE/Edge */
}

.form-select-support-wrapper {
    position: relative;
    display: inline-block;
}

.form-select-support-wrapper::after {
    content: "▼";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--primary-teal);
}




