/* CSS Variables */
:root {
    /* Colors - Professional B2B Navy & Teal */
    --color-background: #fcfcfd;
    --color-foreground: #1a1f2e;
    --color-primary: #1e3a5f;
    --color-secondary: #f5f6f8;
    --color-accent: #0ea5e9;
    --color-muted: #64748b;
    --color-border: #e2e4e9;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-background);
    color: var(--color-foreground);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(252, 252, 253, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-icon {
    color: var(--color-accent);
}

.nav {
    display: none;
    align-items: center;
    gap: var(--spacing-md);
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-muted);
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--color-foreground);
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: #152e4d;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-foreground);
}

.btn-outline:hover {
    background-color: var(--color-secondary);
}

.btn-ghost {
    background-color: transparent;
    color: var(--color-foreground);
}

.btn-ghost:hover {
    background-color: var(--color-secondary);
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    min-width: 200px;
}

.btn-icon {
    width: 16px;
    height: 16px;
    margin-left: var(--spacing-xs);
}

.btn-icon-left {
    width: 16px;
    height: 16px;
    margin-right: var(--spacing-xs);
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--color-background), rgba(245, 246, 248, 0.2));
    padding: var(--spacing-3xl) 0;
}

.hero-content {
    text-align: center;
}

.hero-inner {
    max-width: 56rem;
    margin: 0 auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.5rem 1rem;
    background-color: rgba(14, 165, 233, 0.1);
    color: var(--color-accent);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
}

.badge-icon {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-muted);
    margin-bottom: var(--spacing-xl);
}

@media (min-width: 1024px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-3xl);
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-muted);
}

/* Clients Section */
.clients {
    padding: var(--spacing-3xl) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background-color: rgba(245, 246, 248, 0.1);
}

.clients-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
}

@media (min-width: 1024px) {
    .clients-title {
        font-size: 1.875rem;
    }
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .clients-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.client-logo:hover {
    filter: grayscale(0%);
}

.client-logo img {
    height: 48px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.client-logo:hover img {
    opacity: 1;
}

/* Features Section */
.features {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    max-width: 42rem;
    margin: 0 auto;
    font-size: 1.125rem;
    color: var(--color-muted);
}

.features-grid {
    display: grid;
    gap: var(--spacing-md);
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    padding: var(--spacing-md);
    background-color: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: rgba(14, 165, 233, 0.5);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius);
    margin-bottom: var(--spacing-sm);
    color: var(--color-accent);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.feature-description {
    font-size: 1rem;
    color: var(--color-muted);
}

/* How It Works Section */
.how-it-works {
    padding: var(--spacing-3xl) 0;
    background-color: rgba(245, 246, 248, 0.3);
}

.steps-grid {
    display: grid;
    gap: var(--spacing-xl);
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.steps-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background-color: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background-color: var(--color-accent);
    color: white;
    border-radius: var(--radius-full);
    font-size: 1.125rem;
    font-weight: 700;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.step-description {
    font-size: 0.875rem;
    color: var(--color-muted);
}

/* Footer */
.footer {
    border-top: 1px solid var(--color-border);
    background-color: rgba(245, 246, 248, 0.2);
    padding: var(--spacing-xl) 0;
}

.footer-content {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
}

.footer-grid {
    display: grid;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-description {
    font-size: 0.875rem;
    color: var(--color-muted);
    margin-top: var(--spacing-sm);
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--color-muted);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--color-foreground);
}

.footer-bottom {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-border);
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-muted);
}

/* Auth Pages */
.auth-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(245, 246, 248, 0.3);
    padding: var(--spacing-md);
}

.auth-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
}

.auth-card {
    width: 100%;
    max-width: 28rem;
}

/* Cards */
.card {
    background-color: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.card-header {
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--color-border);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.card-description {
    font-size: 0.875rem;
    color: var(--color-muted);
}

.card-content {
    padding: var(--spacing-md);
}

.card-footer {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

/* Forms */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: var(--spacing-sm);
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-foreground);
}

.form-group input,
.form-group textarea,
.form-group select,
.form-select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background-color: white;
    color: var(--color-foreground);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.full-width {
    width: 100%;
}

.form-grid {
    display: grid;
    gap: var(--spacing-sm);
}

@media (min-width: 640px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-grid .full-width {
        grid-column: 1 / -1;
    }
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

/* Tabs */
.tabs {
    width: 100%;
    max-width: 28rem;
}

.tabs-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: var(--color-secondary);
    padding: 0.25rem;
    border-radius: var(--radius);
    margin-bottom: var(--spacing-md);
}

.tabs-list-horizontal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 28rem;
    background-color: var(--color-secondary);
    padding: 0.25rem;
    border-radius: var(--radius);
    margin-bottom: var(--spacing-md);
}

.tab-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    background-color: transparent;
    color: var(--color-foreground);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background-color 0.2s;
}

.tab-trigger:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.tab-trigger.active {
    background-color: white;
    box-shadow: var(--shadow-sm);
}

.tab-icon {
    width: 16px;
    height: 16px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Text Utilities */
.text-center {
    text-align: center;
}

.text-muted {
    color: var(--color-muted);
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.link {
    color: var(--color-accent);
    transition: text-decoration 0.2s;
}

.link:hover {
    text-decoration: underline;
}

/* Site Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(252, 252, 253, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-links {
    display: none;
    align-items: center;
    gap: var(--spacing-md);
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-muted);
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-foreground);
}

/* Main Content */
.main-content {
    flex: 1;
    background-color: rgba(245, 246, 248, 0.3);
    padding: var(--spacing-xl) 0;
}

/* Profile Page */
.profile-container {
    max-width: 64rem;
}

.page-header {
    margin-bottom: var(--spacing-xl);
}

.page-header h1 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Upload Area */
.upload-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-3xl);
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s;
}

.upload-area:hover {
    border-color: var(--color-accent);
    background-color: rgba(14, 165, 233, 0.05);
}

.upload-icon {
    width: 48px;
    height: 48px;
    color: var(--color-muted);
    margin-bottom: var(--spacing-sm);
}

.upload-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-foreground);
    margin-bottom: 0.25rem;
}

.upload-subtext {
    font-size: 0.75rem;
    color: var(--color-muted);
}

/* File Preview */
.file-preview {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-sm);
}

.file-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.file-icon {
    width: 32px;
    height: 32px;
    color: var(--color-accent);
}

.file-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-foreground);
}

.file-size {
    font-size: 0.75rem;
    color: var(--color-muted);
}

.btn-icon {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    color: var(--color-muted);
    transition: color 0.2s;
}

.btn-icon:hover {
    color: var(--color-foreground);
}

/* Progress Bar */
.progress-container {
    margin-top: var(--spacing-sm);
}

.progress-bar {
    height: 8px;
    background-color: var(--color-secondary);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--spacing-xs);
}

.progress-bar > div,
#progress {
    height: 100%;
    background-color: var(--color-accent);
    transition: width 0.3s;
    width: 0;
}

/* Badges */
.badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--spacing-sm);
}

.badge,
.badge-secondary,
.badge-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: var(--radius);
}

.badge-secondary {
    background-color: var(--color-secondary);
    color: var(--color-foreground);
}

.badge-outline {
    background-color: transparent;
    border: 1px solid rgba(14, 165, 233, 0.5);
    color: var(--color-accent);
}

.badge button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 0.25rem;
    color: inherit;
    font-size: 1rem;
    line-height: 1;
}

.badge button:hover {
    opacity: 0.7;
}

/* Search Page */
.search-container {
    max-width: 90rem;
}

.search-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-xl);
    gap: var(--spacing-md);
}

.search-header h1 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.search-layout {
    display: grid;
    gap: var(--spacing-md);
}

@media (min-width: 1024px) {
    .search-layout {
        grid-template-columns: 300px 1fr;
    }
}

/* Filters Sidebar */
.filters-sidebar {
    height: fit-content;
}

.filters-content {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

/* Checkbox */
.checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Enhanced Slider with filled track */
.slider {
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, #0ea5e9 0%, #0ea5e9 0%, #f5f6f8 0%, #f5f6f8 100%);
    border-radius: var(--radius-full);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    transition: background 0.15s ease-in-out;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #0ea5e9;
    border: 3px solid white;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 6px rgba(14, 165, 233, 0.4);
}

.slider::-webkit-slider-thumb:active {
    transform: scale(1.05);
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #0ea5e9;
    border: 3px solid white;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
}

.slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 6px rgba(14, 165, 233, 0.4);
}

.slider::-moz-range-thumb:active {
    transform: scale(1.05);
}

/* Firefox specific track styling */
.slider::-moz-range-track {
    background: transparent;
    border: none;
}

.slider::-moz-range-progress {
    background: #0ea5e9;
    height: 8px;
    border-radius: var(--radius-full);
}

/* Candidates Grid */
.candidates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    align-items: start; 
}
/* Single column on mobile */
@media (max-width: 768px) {
    .candidates-grid {
        grid-template-columns: 1fr;
    }
}

/* Candidate Card */
.candidate-card {
    background-color: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    /* min-height: 100%; */
}

.candidate-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.candidate-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: var(--spacing-sm);
}

.candidate-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.candidate-title {
    font-size: 0.875rem;
    color: var(--color-muted);
}

.match-score {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    background-color: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius-full);
}

.star-icon {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
}

.match-score span {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-accent);
}

.candidate-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--color-muted);
    margin-bottom: var(--spacing-sm);
}

.candidate-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.meta-icon {
    width: 16px;
    height: 16px;
}

.candidate-skills {
    margin-bottom: var(--spacing-sm);
}

.skills-label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.candidate-actions {
    margin-top: auto;
    padding-top: var(--spacing-sm);
}

/* Filter Section - replaces form-group for collapsible sections */
.filter-section {
    margin-bottom: 1rem;
}

/* Collapsible Filter Sections */
.filters-content .filter-section .collapsible-header {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    cursor: pointer;
    user-select: none;
    padding: 0;
    margin-bottom: 0.5rem;
}

/* .filters-content .filter-section .collapsible-header:hover {
    background-color: rgba(14, 165, 233, 0.05);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    border-radius: 0.25rem;
} */

.filters-content .filter-section .collapsible-header .filter-label {
    cursor: pointer;
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-foreground);
    font-family: var(--font-sans);
    line-height: normal;
    letter-spacing: normal;
}

.filters-content .filter-section .collapsible-header .chevron-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--color-muted);
    width: 20px;
    height: 20px;
}

.filters-content .filter-section .collapsible-header.collapsed .chevron-icon {
    transform: rotate(-90deg);
}

.filters-content .filter-section .collapsible-content {
    max-height: 300px;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

.filters-content .filter-section .collapsible-content.collapsed {
    max-height: 0;
    opacity: 0;
}

/* Scrollable Checkbox List */
.filters-content .filter-section .checkbox-list.scrollable {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 0.5rem;
    margin-top: 0.5rem;
}

/* Custom Scrollbar */
.filters-content .filter-section .checkbox-list.scrollable::-webkit-scrollbar {
    width: 6px;
}

.filters-content .filter-section .checkbox-list.scrollable::-webkit-scrollbar-track {
    background: var(--color-secondary);
    border-radius: 3px;
}

.filters-content .filter-section .checkbox-list.scrollable::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 3px;
}

.filters-content .filter-section .checkbox-list.scrollable::-webkit-scrollbar-thumb:hover {
    background: var(--color-muted);
}


.btn-success {
    background-color: #10b981;
    color: white;
}

.btn-success:hover {
    background-color: #059669;
}

.education-item {
    margin-bottom: 1.5rem;
}

.education-item:last-child {
    margin-bottom: 0;
}
.avatar-drop > img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}
.avatar-actions {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}
.avatar-overlay {
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e4e9;
    border-radius: 5px;
    margin: 0 10px 0;
    padding: 5px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}