/* =============================================
   SnapFind - Combined Styles
   ============================================= */

/* =============================================
   CSS Variables & Base Styles
   ============================================= */
   :root {
    /* Premium Color Palette - Signup Page */
    --primary-blue: #2563EB;
    --primary-hover: #1D4ED8;
    --primary-light: #EFF6FF;
    --secondary-bg: #F8FAFC;
    --white: #FFFFFF;
    --text-dark: #0F172A;
    --text-medium: #334155;
    --text-light: #64748B;
    --border-color: #E2E8F0;
    --success-green: #10B981;
    --success-bg: #ECFDF5;
    --warning-orange: #F59E0B;
    --warning-bg: #FFFBEB;
    --danger-red: #EF4444;

    /* Dashboard/Explore Roles Variables */
    --bg: #f8fafc;
    --card: #ffffff;
    --muted: #64748b;
    --accent: #2563eb;
    --accent-light: #3b82f6;
    --accent-dark: #1d4ed8;
    --success: #16a34a;
    --danger: #ef4444;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);

    /* Border Radius */
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 14px;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.2s ease;
    --transition-base: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);

    /* Sidebar */
    --sidebar-width: 260px;
    --sidebar-collapsed-width: 70px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Default body styles - overridden by page-specific styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: var(--transition-base);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94A3B8;
}

/* =============================================
   Signup Page Layout
   ============================================= */

/* Signup page body styles */
body:has(.page-wrapper) {
    background-color: var(--secondary-bg);
    overflow-x: hidden;
    overflow-y: hidden;
}

.page-wrapper {
    height: 100vh;
    width: 100%;
    background-color: #EEF2F7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow: hidden;
}

.signup-container {
    display: flex;
    width: 100%;
    max-width: 1370px;
    height: calc(100vh - 2rem);
    background-color: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1), 
                0 12px 24px -8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* =============================================
   Left Panel - Illustration
   ============================================= */
.left-panel {
    width: 45%;
    background: linear-gradient(180deg, #F8FAFC 0%, #EEF2F7 100%);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.panel-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
}

.panel-logo .logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.125rem;
}

.panel-logo .logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1E293B;
    letter-spacing: -0.02em;
}

.panel-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* Taglines */
.taglines {
    text-align: center;
}

.tagline-item {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.tagline-badge {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: #FFFFFF;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.tagline-rating {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #FFFFFF;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.tagline-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 0.125rem;
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline-subtext {
    font-size: 0.8rem;
    color: #64748B;
    font-weight: 500;
}

/* Trust Bar */
.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    background: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.trust-avatars {
    display: flex;
    align-items: center;
}

.trust-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    margin-left: -10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    object-fit: cover;
}

.trust-avatars img:first-child {
    margin-left: 0;
}

.trust-avatars img:hover {
    transform: scale(1.1);
    z-index: 10;
}

.trust-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-info strong {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1E293B;
}

/* Illustration */
.illustration-wrapper {
    position: relative;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-illustration {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    width: 44px;
    height: 44px;
    background: #FFFFFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    color: #3B82F6;
    font-size: 1.35rem;
    animation: float 3s ease-in-out infinite;
}

.icon-briefcase {
    top: 18%;
    left: 15%;
    animation-delay: 0s;
    color: #2563EB;
}

.icon-money {
    top: 15%;
    right: 18%;
    animation-delay: 0.5s;
    color: #10B981;
}

.icon-handshake {
    top: 42%;
    left: 8%;
    animation-delay: 1s;
    color: #F59E0B;
}

.icon-users {
    top: 38%;
    right: 10%;
    animation-delay: 1.5s;
    color: #8B5CF6;
}

.icon-certificate {
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
    color: #EC4899;
}

.icon-rocket {
    bottom: 20%;
    right: 10%;
    animation-delay: 2.5s;
    color: #EF4444;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* =============================================
   Right Panel - Form
   ============================================= */
.right-panel {
    width: 55%;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow: hidden;
}

.form-container {
    width: 100%;
    max-width: 480px;
    padding: 0;
}

.form-header {
    text-align: left;
    margin-bottom: 1rem;
}

.form-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
    color: #1E293B;
    letter-spacing: -0.02em;
}

.form-header p {
    color: #64748B;
    font-size: 0.9rem;
}

/* Form Elements */
.form-row {
    display: flex;
    gap: 0.75rem;
}

.form-group {
    margin-bottom: 0.625rem;
    flex: 1;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748B;
    margin-bottom: 0.375rem;
}

.input-field {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1.5px solid #E2E8F0;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: all 0.2s;
    background-color: #FFFFFF;
    color: #1E293B;
}

.input-field::placeholder {
    color: #94A3B8;
}

.input-field:focus {
    border-color: #3B82F6;
    background-color: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

/* Password Toggle */
.password-wrapper {
    position: relative;
    width: 100%;
}

.password-wrapper .input-field {
    padding-right: 40px;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #94A3B8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.password-toggle:hover {
    color: #64748B;
}

.password-toggle i {
    font-size: 1.125rem;
}

/* intl-tel-input Styles */
.iti {
    width: 100%;
    display: block;
}

.iti__flag-container {
    padding: 0;
}

.iti__selected-flag {
    background-color: #F8FAFC;
    border: 1.5px solid #E2E8F0;
    border-right: none;
    border-radius: 8px 0 0 8px;
    padding: 0 8px;
    height: 100%;
}

.iti__selected-flag:hover,
.iti__selected-flag:focus {
    background-color: #F1F5F9;
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: #F8FAFC;
}

.iti--separate-dial-code input[type="tel"],
.iti--separate-dial-code input.input-field {
    border-radius: 0 8px 8px 0 !important;
    padding-left: 100px !important;
    width: 100% !important;
}

.iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 6px;
    font-size: 0.875rem;
}

.iti__country-list {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #E2E8F0;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    width: 280px;
    max-width: 90vw;
}

.iti__country {
    padding: 8px 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.iti__country:hover {
    background-color: #F1F5F9;
}

.iti__country--highlight {
    background-color: #EFF6FF;
}

.iti__country-name {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: middle;
}

.iti__dial-code {
    color: #64748B;
}

.iti--container {
    z-index: 1000;
}

.form-group .iti {
    width: 100%;
}

#phone {
    padding-left: 100px !important;
}

/* Checkbox Group - Signup Page */
.signup-form .checkbox-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    color: #64748B;
}

.signup-form .checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    text-align: left;
}

.checkbox-label input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    accent-color: #3B82F6;
    flex-shrink: 0;
}

.checkbox-label span {
    display: inline;
}

.link-blue {
    color: #3B82F6;
    text-decoration: none;
    font-weight: 600;
}

/* Captcha */
.captcha-container {
    margin-bottom: 0.75rem;
}

.captcha-container .g-recaptcha {
    transform: scale(0.9);
    transform-origin: 0 0;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-primary {
    flex: 1;
    padding: 0.65rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

/* Social Login */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 0.75rem 0;
    color: #94A3B8;
    font-size: 0.7rem;
    font-weight: 500;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #E2E8F0;
}

.divider::before {
    margin-right: 1rem;
}

.divider::after {
    margin-left: 1rem;
}

.social-login {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.btn-social {
    flex: 1;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1.5px solid #E2E8F0;
    background-color: #FFFFFF;
    color: #1E293B;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
    white-space: nowrap;
}

.btn-social:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #CBD5E1;
    background-color: #F8FAFC;
}

.btn-social svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.signin-link {
    text-align: center;
    font-size: 0.8rem;
    color: #64748B;
}

/* =============================================
   Responsive Styles
   ============================================= */
@media (max-width: 900px) {
    .page-wrapper {
        padding: 1rem;
        min-height: auto;
        height: auto;
        overflow-y: auto;
    }
    
    .signup-container {
        flex-direction: column;
        max-width: 500px;
        min-height: auto;
        height: auto;
        overflow: visible;
        max-height: none;
    }

    .left-panel {
        width: 100%;
        min-height: 200px;
        padding: 2rem;
    }
    
    .main-illustration {
        max-width: 250px;
    }
    
    .floating-icon {
        display: none;
    }

    .right-panel {
        width: 100%;
        padding: 2rem;
        overflow: visible;
        max-height: none;
    }
    
    .form-container {
        overflow: visible;
    }
    
    .social-login {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .captcha-container .g-recaptcha {
        transform: scale(0.85);
        transform-origin: 0 0;
    }
    
    .iti__country-list {
        width: 260px;
        max-width: 85vw;
    }
    
    .iti__country-name {
        max-width: 120px;
    }
}

/* =============================================
   Dashboard / Job Listing / Explore Roles Styles
   ============================================= */

/* ===== Dashboard page body styles ===== */
/* Class-based approach for better compatibility */
html.dashboard-html,
html.dashboard-html body,
html:has(.sidebar),
html:has(.sidebar) body {
  height: 100%;
  overflow: hidden;
}

body.dashboard-page,
body:has(.sidebar) {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  height: 100%;
  overflow: hidden;
}

/* Dashboard link styles - excluding nav items */
body.dashboard-page a:not(.nav-item):not(.submenu-item),
body:has(.sidebar) a:not(.nav-item):not(.submenu-item) {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

body.dashboard-page a:not(.nav-item):not(.submenu-item):hover,
body:has(.sidebar) a:not(.nav-item):not(.submenu-item):hover {
  color: var(--accent-dark);
}

/* ===== Left Sidebar ===== */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--card);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  z-index: 100;
  transition: width 0.3s ease;
  overflow: hidden;
}

.sidebar.collapsed {
  width: var(--sidebar-collapsed-width);
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 16px;
  min-height: 76px;
  border-bottom: 1px solid var(--border-light);
  gap: 10px;
}

/* Menu Icon Button */
.menu-icon-btn {
  background: transparent;
  border: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  transition: var(--transition);
  flex-shrink: 0;
}

.menu-icon-btn:hover {
  background: var(--border-light);
  color: var(--accent);
}

.menu-icon-btn i {
  font-size: 20px;
}

.logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  transition: opacity 0.3s ease;
  flex: 1;
}

.sidebar.collapsed .logo-text {
  opacity: 0;
  width: 0;
}

.sidebar-toggle {
  background: transparent;
  border: none;
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--muted);
  transition: var(--transition);
  flex-shrink: 0;
}

.sidebar-toggle:hover {
  background: var(--border-light);
  color: var(--accent);
}

.sidebar-toggle i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.sidebar.collapsed .sidebar-toggle i {
  transform: rotate(180deg);
}

/* ===== Sidebar Profile Section ===== */
.sidebar-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  border-bottom: 1px solid var(--border-light);
}

.profile-avatar-wrapper {
  position: relative;
  margin-bottom: 12px;
}

.profile-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.profile-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.profile-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  white-space: nowrap;
}

.profile-badge-row {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
}

.badge-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.badge-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.sidebar.collapsed .sidebar-profile {
  display: none;
}

.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
}

.sidebar-nav::-webkit-scrollbar {
  width: 4px;
}

.sidebar-nav::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar-nav::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: var(--radius-full);
}

.nav-section {
  padding: 8px 12px;
  border-bottom: 1px solid var(--border-light);
}

.nav-section:last-child {
  border-bottom: none;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  margin-bottom: 2px;
  white-space: nowrap;
}

.nav-item:hover {
  background: var(--border-light);
  color: var(--text-primary);
}

.nav-item.active {
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent);
}

.nav-item i {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-item span {
  transition: opacity 0.3s ease;
  flex: 1;
}

/* Nav Item Dropdown with Submenu */
.nav-item-dropdown {
  position: relative;
}

.nav-item.has-submenu {
  position: relative;
}

.nav-item.has-submenu .submenu-arrow {
  width: 16px;
  height: 16px;
  margin-left: auto;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  font-size: 12px;
}

.nav-item.has-submenu.open .submenu-arrow {
  transform: rotate(180deg);
}

.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  background: var(--border-light);
  border-radius: var(--radius);
  margin: 4px 0 4px 12px;
}

.submenu.open {
  max-height: 200px;
  opacity: 1;
}

.submenu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  border-left: 2px solid transparent;
}

.submenu-item:hover {
  background: rgba(37, 99, 235, 0.05);
  color: var(--accent);
  border-left-color: var(--accent);
}

.submenu-item i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  font-size: 14px;
}

.submenu-item .hot-icon {
  color: #f97316;
}

.sidebar.collapsed .nav-item span {
  opacity: 0;
  width: 0;
  overflow: hidden;
  display: none;
}

.sidebar.collapsed .submenu-arrow {
  display: none;
}

.sidebar.collapsed .submenu {
  display: none;
}

.sidebar.collapsed .nav-section {
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sidebar.collapsed .nav-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  width: 44px;
  height: 44px;
  margin: 2px 0;
  gap: 0;
}

/* ===== Main Content Wrapper ===== */
.main-wrapper {
  margin-left: var(--sidebar-width);
  height: 100vh;
  transition: margin-left 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sidebar.collapsed ~ .main-wrapper {
  margin-left: var(--sidebar-collapsed-width);
}

.main-wrapper.expanded {
  margin-left: var(--sidebar-collapsed-width);
}

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 32px 24px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transition: padding 0.3s ease;
}

.container::-webkit-scrollbar {
  width: 6px;
}

.container::-webkit-scrollbar-track {
  background: transparent;
}

.container::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: var(--radius-full);
}

/* ===== Mobile Header ===== */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 0 16px;
  z-index: 200;
  align-items: center;
  justify-content: space-between;
}

.mobile-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

.mobile-menu-btn {
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--text-primary);
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  background: var(--border-light);
}

.mobile-menu-btn i {
  font-size: 22px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 150;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.show {
  display: block;
  opacity: 1;
}

/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  padding: 34px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid #bfdbfe;
  margin-top: 24px;
}

.hero h1 {
  font-size: 22px;
  margin: 0 0 6px;
  font-weight: 700;
  text-align: center;
  color: var(--text-primary);
}

.hero p {
  color: var(--muted);
  margin: 0 0 16px;
  font-size: 14px;
  text-align: center;
}

/* ===== Search Area ===== */
.search-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.search-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.search-bar {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
}

.search-bar input {
  width: 500px;
  min-width: 500px;
  flex: 1;
  max-width: 600px;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-primary);
  background: var(--card);
  transition: var(--transition);
}

.search-bar input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-bar input::placeholder {
  color: #94a3b8;
}

.search-bar select {
  padding: 12px 36px 12px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 14px;
  background-color: var(--card);
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M2.5 4.5L6 8l3.5-3.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}

.search-bar select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-btn {
  padding: 12px 20px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.search-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ===== Filter Row (Slider & Checkbox) ===== */
.filter-row {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--card);
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.slider-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1;
}

.slider-wrapper {
  position: relative;
  width: 140px;
  height: 20px;
  display: flex;
  align-items: center;
}

.slider-wrapper input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, var(--accent) 0%, var(--accent) 20%, var(--border) 20%, var(--border) 100%);
  border-radius: var(--radius-full);
  outline: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
  margin: 0;
}

.slider-wrapper input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--card);
  border: 3px solid var(--accent);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
  transition: var(--transition);
}

.slider-wrapper input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 3px 10px rgba(37, 99, 235, 0.4);
}

.slider-wrapper input[type=range]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--card);
  border: 3px solid var(--accent);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
  transition: var(--transition);
}

.slider-wrapper input[type=range]::-moz-range-thumb:hover {
  transform: scale(1.1);
}

.slider-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(37, 99, 235, 0.08);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  min-width: 75px;
  text-align: center;
  border: none;
}

/* ===== Custom Checkbox ===== */
.checkbox-group {
  display: flex;
  align-items: center;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  position: relative;
  padding: 6px 10px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.custom-checkbox:hover {
  background: rgba(37, 99, 235, 0.05);
}

.custom-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  width: 18px;
  height: 18px;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.checkmark::after {
  content: '';
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.15s ease;
  margin-top: -1px;
}

.custom-checkbox input[type=checkbox]:checked ~ .checkmark {
  background: var(--accent);
  border-color: var(--accent);
}

.custom-checkbox input[type=checkbox]:checked ~ .checkmark::after {
  transform: rotate(45deg) scale(1);
}

.custom-checkbox:hover .checkmark {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checkbox-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1;
}

.custom-checkbox input[type=checkbox]:checked ~ .checkbox-text {
  color: var(--text-primary);
}

/* ===== Section Title ===== */
.section-title {
  font-size: 17px;
  font-weight: 700;
  margin: 28px 0 16px;
  padding: 12px 16px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(to right, rgba(37, 99, 235, 0.05), transparent);
  border-radius: var(--radius);
  border-bottom: none;
}

.section-title::before {
  content: '';
  width: 4px;
  height: 22px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 4px;
  flex-shrink: 0;
}

/* ===== Category Grid ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.category-card {
  background: var(--card);
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
}

.category-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.category-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}

.category-sub {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.category-count {
  margin-top: 10px;
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
}

/* ===== Company Grid ===== */
.company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.company-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 12px 16px;
  transition: var(--transition);
  min-width: 0;
}

.company-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.company-left {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

.company-right {
  grid-column: 2;
  grid-row: 1 / 3;
  width: 100px;
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
}

.company-header {
  display: flex;
  gap: 12px;
  align-items: center;
}

.company-logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent);
  font-size: 15px;
  flex-shrink: 0;
}

.company-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
}

.company-meta {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.verified {
  background: #f0fdf4;
  color: var(--success);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 11px;
  display: inline-block;
  margin-top: 6px;
  border: 1px solid #bbf7d0;
}

.company-stats {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 0;
}

.stat-pill {
  background: var(--border-light);
  padding: 5px 8px;
  border-radius: var(--radius-full);
  font-size: 11px;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
  width: fit-content;
}

.closers {
  grid-column: 1 / -1;
  margin-top: 0;
  font-size: 12px;
  color: var(--muted);
}

.job-count {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
}

.update-date {
  color: var(--muted);
  margin-top: 6px;
  font-size: 12px;
}

.view-btn {
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.view-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ===== Responsive Styles ===== */
@media (max-width: 1024px) {
  .sidebar {
    width: var(--sidebar-collapsed-width);
  }

  .sidebar .logo-text,
  .sidebar .nav-item span {
    opacity: 0;
    width: 0;
    overflow: hidden;
  }

  .sidebar .nav-item {
    justify-content: center;
    padding: 12px;
  }

  .main-wrapper {
    margin-left: var(--sidebar-collapsed-width);
  }

  .sidebar .sidebar-profile {
    display: none;
  }

  .sidebar:not(.collapsed) {
    width: var(--sidebar-width);
  }

  .sidebar:not(.collapsed) .logo-text,
  .sidebar:not(.collapsed) .nav-item span {
    opacity: 1;
    width: auto;
  }

  .sidebar:not(.collapsed) .nav-item {
    justify-content: flex-start;
    padding: 12px 14px;
  }

  .sidebar:not(.collapsed) .sidebar-profile {
    display: flex;
  }
}

@media (max-width: 768px) {
  /* Show mobile header */
  .mobile-header {
    display: flex;
  }

  /* Adjust body for mobile scrolling */
  html,
  body {
    height: auto;
    overflow: auto;
  }

  .sidebar {
    transform: translateX(-100%);
    width: var(--sidebar-width);
    z-index: 250;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .sidebar.open .logo-text,
  .sidebar.open .nav-item span {
    opacity: 1;
    width: auto;
    overflow: visible;
    display: inline;
  }

  .sidebar.open .nav-item {
    justify-content: flex-start;
    padding: 12px 14px;
    width: auto;
    height: auto;
  }

  .sidebar.open .nav-section {
    display: block;
    align-items: stretch;
  }

  .sidebar.open .sidebar-profile {
    display: flex;
  }

  .main-wrapper {
    margin-left: 0;
    margin-top: 60px;
    height: auto;
    min-height: calc(100vh - 60px);
    overflow: visible;
  }

  .container {
    height: auto;
    overflow: visible;
    padding: 16px;
  }

  .hero {
    margin-top: 16px;
    padding: 24px 16px;
  }

  .hero h1 {
    font-size: 18px;
  }

  .hero p {
    font-size: 13px;
  }

  .search-bar {
    flex-direction: column;
    width: 100%;
  }

  .search-bar input {
    width: 100%;
  }

  .search-bar select {
    width: 100%;
  }

  .search-btn {
    width: 100%;
  }

  .filter-row {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .slider-group {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .slider-wrapper {
    width: 100%;
  }

  .slider {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .slider input[type=range] {
    width: 100%;
  }

  .category-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
  }

  .company-grid {
    grid-template-columns: 1fr;
  }

  .company-card {
    flex-direction: column;
    gap: 12px;
  }

  .company-right {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 12px;
  }

  .hero {
    padding: 20px 14px;
  }

  .hero h1 {
    font-size: 16px;
  }

  .category-card {
    padding: 14px;
  }

  .company-card {
    padding: 14px;
  }

  .company-logo {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }

  .company-name {
    font-size: 14px;
  }

  .stat-pill {
    font-size: 11px;
    padding: 5px 8px;
  }
}

/* =============================================
   SnapFind Job Listing Page - Unique Styles
   ============================================= */

/* ===== Header ===== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  min-height: 60px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  gap: 16px;
  background: var(--bg);
}

.title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.025em;
}

.sub {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

.small {
  font-size: 13px;
  color: var(--muted);
}

/* ===== Buttons ===== */
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: #eff6ff;
}

/* ===== Layout Grid ===== */
.layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  margin-top: 24px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

/* ===== Filters Sidebar ===== */
.filters {
  background: var(--card);
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  overflow-y: auto;
  align-self: start;
}

.filters::-webkit-scrollbar {
  width: 5px;
}

.filters::-webkit-scrollbar-track {
  background: transparent;
}

.filters::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: var(--radius-full);
}

.filters h4 {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.filters h4::before {
  content: '';
  width: 4px;
  height: 18px;
  background: var(--accent);
  border-radius: 2px;
}

/* When inside filters-header, remove margin */
.filters-header h4 {
  margin: 0;
}

.filter-group {
  margin-bottom: 14px;
}

.filter-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Filter row for side-by-side filters */
.filter-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.filter-row .filter-group {
  margin-bottom: 14px;
}

input[type=text],
input[type=date],
select,
input[type=number] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-primary);
  background: var(--card);
  transition: var(--transition);
}

input[type=text]:focus,
select:focus,
input[type=number]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

input::placeholder {
  color: #94a3b8;
}

.range {
  display: flex;
  gap: 10px;
}

.range input {
  flex: 1;
}

/* ===== Chips ===== */
.chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.chips-compact {
  gap: 5px;
}

.chip {
  padding: 6px 12px;
  background: var(--border-light);
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 300;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  margin: 4px;
  user-select: none;
}

.chip input {
  display: none;
}

/* When checkbox is checked → chip active styling */
.chip input:checked + * {
  font-weight: bold;
}

.chip input:checked {
  display: none;
}

.chip:has(input:checked) {
  /* background-color: #007bff; */
  color: #007bff;
  border-color: #007bff;
}

/* .chip {
  padding: 6px 12px;
  background: var(--border-light);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
} */

.chip-sm {
  padding: 5px 10px;
  font-size: 11px;
}

.chip:hover,
.chip.active {
  background: #eff6ff;
  border-color: var(--accent);
  color: var(--accent);
}

/* ===== Main Content Area ===== */
main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 0;
  overflow-y: auto;
  padding-right: 8px;
  padding-bottom: 20px;
}

main::-webkit-scrollbar {
  width: 6px;
}

main::-webkit-scrollbar-track {
  background: transparent;
}

main::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: var(--radius-full);
}

main::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}

/* Jobs container */
.jobs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ===== Campaign Banner ===== */
.campaign {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border: 1px solid #bfdbfe;
  flex-shrink: 0;
}

.campaign strong {
  font-size: 15px;
  color: var(--accent-dark);
  display: block;
  margin-bottom: 4px;
}

.campaign .small {
  color: var(--text-secondary);
}

.campaign a {
  font-weight: 600;
  white-space: nowrap;
}

/* ===== Search & List Top ===== */
.list-top {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

/* ===== Pagination ===== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
  gap: 8px;
  flex-wrap: wrap;
}

.pagination-info {
  padding: 8px 12px;
  color: var(--muted);
  font-size: 14px;
}

.search {
  flex: 1;
  display: flex;
  gap: 12px;
  align-items: center;
}

.search input {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 14px;
}

.search select {
  width: 180px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  background-color: var(--card);
  color: var(--text-primary);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' 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 12px center;
  padding-right: 36px;
  transition: var(--transition);
}

.search select:hover {
  border-color: var(--accent-light);
}

.search select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* ===== Job List ===== */
.jobs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 16px;
}

.jobs::-webkit-scrollbar {
  width: 6px;
}

.jobs::-webkit-scrollbar-track {
  background: transparent;
}

.jobs::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: var(--radius-full);
}

.jobs::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* ===== Job Card ===== */
.job-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.job-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow);
}

/* Job Card Inner - Two Column Layout */
.job-card-inner {
  display: flex;
  gap: 20px;
}

/* Left Section */
.job-card-left {
  flex: 1;
  min-width: 0;
}

.job-header-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
}

/* Logo */
.logo {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  flex-shrink: 0;
  border: none;
}

.job-title-section {
  flex: 1;
  min-width: 0;
}

.job-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.job-title {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  color: var(--text-primary);
}

.job-title a {
  color: var(--text-primary);
  text-decoration: none;
}

.job-title a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.company {
  font-size: 13px;
  color: var(--muted);
}

.company a {
  color: var(--text-secondary);
  font-weight: 500;
}

.company a:hover {
  color: var(--accent);
}

/* Meta Tags Row */
.job-meta-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.meta-tag {
  font-size: 11px;
  color: var(--text-secondary);
  background: var(--bg);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

/* Salary - Subtle */
.meta-tag.salary {
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg);
  border-color: var(--border);
}

/* Experience - Subtle */
.meta-tag.experience {
  color: var(--text-secondary);
  background: var(--bg);
  border-color: var(--border);
}

/* Age - Subtle */
.meta-tag.age {
  color: var(--text-secondary);
  background: var(--bg);
  border-color: var(--border);
}

/* Applications - Subtle */
.meta-tag.applications {
  color: var(--text-secondary);
  background: var(--bg);
  border-color: var(--border);
}

/* RP Badge - Subtle */
.meta-tag.rp {
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg);
  border-color: var(--border);
}

/* Extra Info Section */
.job-extra-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.job-industries {
  font-size: 11px;
  color: var(--muted);
}

.job-industries strong {
  color: var(--text-secondary);
  font-weight: 500;
}

.job-commission-info {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 500;
}

.phone-input-wrapper {
    display: flex;
    align-items: stretch;
    gap: 0;
    width: 100%;
}


.country-code-select {
  flex-shrink: 0;
  width: auto;
  min-width: 90px;
  padding: 12px 8px;
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  background: var(--border-light);
  font-size: 14px;
  color: var(--text-primary);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M2.5 4.5L6 8l3.5-3.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 6px center;
  background-size: 10px;
  padding-right: 22px;
}

.country-code-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.phone-number-input {
  flex: 1;
  border-radius: 0 var(--radius) var(--radius) 0 !important;
  border-left: none !important;
}
/* Right Section */
.job-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center; /* Vertically center the content */
  gap: 10px;
  min-width: 180px;
  padding-right: 28px; /* Space for the menu icon */
}

/* Incentive Boxes */
.incentive-boxes {
  display: flex;
  gap: 8px;
}

.incentive-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  min-width: 80px;
}

.incentive-box.commission {
  background: #eff6ff;
  border: none;
}

.incentive-box.interview {
  background: #f0fdf4;
  border: none;
}

.incentive-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.incentive-box.commission .incentive-label {
  color: var(--accent);
}

.incentive-box.interview .incentive-label {
  color: #16a34a;
}

.incentive-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 1px;
}

/* Job Action Buttons */
.job-action-buttons {
  display: flex;
  gap: 10px;
}

.btn-outline {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: #eff6ff;
}

/* Job Links */
.job-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.job-links a {
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.job-links a:hover {
  text-decoration: underline;
}

.job-links-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.link-separator {
  color: var(--muted);
  font-size: 12px;
}

/* ===== Badges ===== */
.badges {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-shrink: 0;
}

.badge {
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}

.badge-commission {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #c2410c;
}

.badge-incentive {
  background: #ecfeff;
  border: 1px solid #a5f3fc;
  color: #0e7490;
}

.badge-hot {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
}

.badge-rp {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
}

.badge-openings {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: var(--accent);
  font-weight: 500;
  font-size: 11px;
  padding: 2px 6px;
}

.badge-assessment {
  background: #faf5ff;
  border: 1px solid #e9d5ff;
  color: #7c3aed;
}

.applications {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #b45309;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
}

/* ===== Hot Job Icon ===== */
.hot-job-icon {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #fff;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  animation: pulse 2s infinite;
}

.hot-job-icon svg {
  width: 10px;
  height: 10px;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(0.98); }
}

/* ===== Job Actions ===== */
.job-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.job-actions .btn-primary,
.job-actions .btn-ghost {
  padding: 8px 14px;
  font-size: 12px;
  white-space: nowrap;
}

/* ===== 3-Dot Menu ===== */
.job-menu {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
}

.job-menu-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.job-menu-btn:hover {
  background: var(--border-light);
}

.job-menu-btn svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
}

.job-menu-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 160px;
  display: none;
  z-index: 100;
  overflow: hidden;
}

.job-menu-dropdown.show {
  display: block;
}

.job-menu-dropdown button {
  display: block;
  width: 100%;
  padding: 12px 16px;
  text-align: left;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-primary);
  transition: var(--transition);
}

.job-menu-dropdown button:hover {
  background: var(--border-light);
  color: var(--accent);
}

/* ===== Responsive Design for larger screens ===== */
@media (max-width: 1024px) {
  .container {
    padding: 16px 20px;
  }
  
  .layout {
    grid-template-columns: 260px 1fr;
    gap: 20px;
  }
}

/* ===== Right Panel Overlay ===== */
.right-panel-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.right-panel-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== Job Description Panel Styles ===== */
.job-desc-panel {
  position: fixed;
  top: 0;
  right: -520px;
  width: 520px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 12px rgba(0, 0, 0, 0.15);
  transition: right 0.28s ease;
  padding: 0;
  overflow-y: auto;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

.job-desc-header {
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
  position: sticky;
  top: 0;
  z-index: 10;
}

.job-desc-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.job-desc-company {
  color: var(--muted);
  font-size: 14px;
  margin-top: 6px;
}

.job-desc-section {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
}

.job-desc-section:last-of-type {
  border-bottom: none;
}

/* Mandatory Criteria Section - Highlighted */
.mandatory-section {
  background: linear-gradient(135deg, #fef3c7 0%, #fef9c3 100%);
  border: 1px solid #fde68a;
  border-radius: 12px;
  margin: 16px;
  padding: 20px !important;
  border-left: 5px solid #f59e0b;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

.mandatory-title {
  font-size: 16px;
  font-weight: 700;
  color: #92400e;
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.mandatory-subtitle {
  color: #b45309;
  font-weight: 600;
  font-size: 12px;
}

.mandatory-note {
  font-size: 14px;
  font-weight: 600;
  margin: 12px 0;
  padding: 10px 14px;
  border-radius: 8px;
}

.preferred-note {
  background: rgba(180, 83, 9, 0.1);
  color: #92400e;
  border-left: 3px solid #d97706;
}

.intent-note {
  background: rgba(22, 163, 74, 0.1);
  color: #15803d;
  border-left: 3px solid #16a34a;
  margin-top: 16px;
}

.mandatory-list {
  font-size: 14px;
  line-height: 1.7;
  color: #78350f;
  padding-left: 20px;
  margin: 0;
}

.mandatory-list li {
  margin-bottom: 8px;
  padding-left: 4px;
}

.mandatory-list li::marker {
  color: #d97706;
  font-weight: 700;
}

/* Section Title - Job Listing Page */
.job-listing-page .section-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px 0;
  padding: 12px 16px;
  border-bottom: none;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(to right, rgba(37, 99, 235, 0.05), transparent);
  border-radius: var(--radius);
}

.section-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-primary);
  margin: 0;
}

/* Company About */
.company-about {
  margin-bottom: 16px;
}

.company-about p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 12px 0;
}

.company-about p:last-child {
  margin-bottom: 0;
}

/* Company Details Table */
.company-details-table {
  width: 100%;
  font-size: 13px;
  color: var(--text-primary);
  border-collapse: collapse;
  margin-top: 16px;
}

.company-details-table tr {
  border-bottom: 1px solid var(--border-light);
}

.company-details-table tr:last-child {
  border-bottom: none;
}

.detail-label {
  padding: 10px 0;
  width: 35%;
  font-weight: 600;
  color: var(--text-secondary);
  vertical-align: top;
}

.detail-value {
  padding: 10px 0;
  color: var(--text-primary);
}

.incentive-tag {
  display: inline-block;
  background: #ecf8ff;
  color: #0366d6;
  padding: 6px 10px;
  border-radius: 6px;
  margin-right: 6px;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 500;
}

/* Responsibilities List */
.responsibilities-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.responsibility-item {
  padding: 12px 16px;
  background: var(--border-light);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}

.responsibility-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 6px 0;
}

.responsibility-item p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* Requirements List */
.requirements-list {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-primary);
  padding-left: 20px;
  margin: 0;
}

.requirements-list li {
  margin-bottom: 10px;
  padding-left: 4px;
}

.requirements-list li::marker {
  color: var(--accent);
}

/* Compensation */
.compensation-text {
  font-size: 14px;
  color: var(--text-primary);
  margin: 0 0 6px 0;
}

/* Job Desc Actions - Fixed at bottom */
.job-desc-actions {
  position: sticky;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 20%);
  padding: 24px;
  margin-top: auto;
}

.job-desc-buttons {
  display: flex;
  gap: 10px;
}

.btn-upload-cv {
  flex: 1;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
}

.btn-upload-cv:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.btn-close-panel {
  flex: 1;
  padding: 12px 16px;
  background: var(--border-light);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.btn-close-panel:hover {
  background: var(--border);
}

/* Job Desc Panel Responsive */
@media (max-width: 768px) {
  .job-desc-panel {
    width: 100% !important;
    right: -100% !important;
  }

  .job-desc-panel[style*="right: 0"],
  .job-desc-panel[style*="right:0"] {
    right: 0 !important;
  }

  .mandatory-section {
    margin: 12px;
    padding: 16px !important;
  }

  .responsibility-item {
    padding: 10px 12px;
  }
}

/* ===== CV Form Panel Styles ===== */
.cv-form-panel {
  position: fixed;
  top: 0;
  right: -520px;
  width: 520px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  transition: right 0.3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

.cv-form-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
}

.cv-form-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.cv-form-subtitle {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

.cv-form-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.cv-form-close:hover {
  background: var(--border-light);
  color: var(--text-primary);
}

.cv-form-content {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
  padding-bottom: 100px; /* Space for fixed buttons */
}

.form-section {
  margin-bottom: 28px;
}

.form-section:last-of-type {
  margin-bottom: 0;
}

.form-section-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.form-group {
  margin-bottom: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row .form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-label .required {
  color: var(--danger);
}

.form-input,
.form-select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-primary);
  background: var(--card);
  transition: var(--transition);
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder {
  color: var(--muted);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' 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 14px center;
  padding-right: 40px;
  cursor: pointer;
}

/* File Upload Styles */
.file-upload-wrapper {
  position: relative;
}

.file-input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  background: var(--border-light);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.file-upload-label:hover {
  border-color: var(--accent);
  background: rgba(37, 99, 235, 0.05);
}

.file-upload-label svg {
  color: var(--accent);
  margin-bottom: 12px;
}

.file-upload-label span {
  font-size: 14px;
  color: var(--text-secondary);
}

.file-upload-label .file-hint {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.file-upload-label.file-selected {
  border-color: var(--success);
  background: rgba(22, 163, 74, 0.05);
}

.file-upload-label.file-selected svg {
  color: var(--success);
}

/* Form Actions - Fixed at bottom */
.form-actions-fixed {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 16px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}

.btn-submit {
  flex: 1;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.btn-cancel {
  flex: 1;
  padding: 14px 24px;
  background: var(--border-light);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cancel:hover {
  background: var(--border);
  color: var(--text-primary);
}

/* intl-tel-input customizations */
.iti {
  width: 100%;
}

.iti__flag-container {
  padding: 0;
}

.iti__selected-flag {
  padding: 0 8px 0 14px;
  background: var(--border-light);
  border-radius: var(--radius) 0 0 var(--radius);
}

.iti__selected-dial-code {
  font-size: 14px;
  color: var(--text-primary);
}

.iti--separate-dial-code .iti__selected-flag {
  background: var(--border-light);
}

.iti--separate-dial-code input {
  padding-left: 108px !important;
}

.iti__country-list {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  max-height: 250px;
  max-width: 360px;
  overflow-y: auto;
}

.iti__country {
  padding: 10px 12px;
}

.iti__country:hover {
  background: var(--border-light);
}

.iti__country.iti__highlight {
  background: rgba(37, 99, 235, 0.1);
}

/* CV Form Panel Responsive */
@media (max-width: 768px) {
  .cv-form-panel {
    width: 100% !important;
    right: -100% !important;
  }

  .cv-form-panel[style*="right: 0"],
  .cv-form-panel[style*="right:0"] {
    right: 0 !important;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Job Description Panel Responsive */
  #jobDescPanel {
    width: 100% !important;
    right: -100% !important;
  }

  #jobDescPanel[style*="right: 0"],
  #jobDescPanel[style*="right:0"] {
    right: 0 !important;
  }
}

/* ===== Mobile Header ===== */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 0 16px;
  z-index: 200;
  align-items: center;
  justify-content: space-between;
}

.mobile-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-logo-img {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.mobile-logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.mobile-menu-btn {
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--text-primary);
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  background: var(--border-light);
}

.mobile-menu-btn svg,
.mobile-menu-btn i {
  width: 24px;
  height: 24px;
  font-size: 22px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 150;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.show {
  display: block;
  opacity: 1;
}

/* Mobile Filter Toggle Button */
.mobile-filter-toggle {
  display: none;
  width: 100%;
  padding: 14px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: var(--transition);
  margin-bottom: 16px;
}

.mobile-filter-toggle:hover {
  border-color: var(--accent);
  background: var(--border-light);
}

.mobile-filter-toggle svg:first-of-type {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.mobile-filter-toggle span {
  flex: 1;
  text-align: left;
}

.mobile-filter-toggle .toggle-arrow {
  width: 16px;
  height: 16px;
  color: var(--muted);
  transition: transform 0.3s ease;
}

.mobile-filter-toggle.active .toggle-arrow {
  transform: rotate(180deg);
}

/* Filters Header (for mobile close button) */
.filters-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.filters-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.filters-header h4::before {
  content: '';
  width: 4px;
  height: 18px;
  background: var(--accent);
  border-radius: 2px;
}

.filters-close-btn {
  display: none;
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--muted);
  transition: var(--transition);
}

.filters-close-btn:hover {
  background: var(--border-light);
  color: var(--text-primary);
}

.filters-close-btn svg {
  width: 20px;
  height: 20px;
}

/* Header Actions */
.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Header Logo */
.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

/* ===== Mobile Responsive Styles ===== */
@media (max-width: 768px) {
  /* Show mobile header */
  .mobile-header {
    display: flex;
  }

  /* Adjust body for mobile scrolling */
  html, body {
    height: auto;
    overflow: auto;
  }

  /* Hide desktop sidebar on mobile */
  .sidebar {
    transform: translateX(-100%);
    width: var(--sidebar-width);
    z-index: 250;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  /* Main wrapper adjustments */
  .main-wrapper {
    margin-left: 0;
    margin-top: 60px;
    height: auto;
    min-height: calc(100vh - 60px);
    overflow: visible;
  }

  .container {
    height: auto;
    overflow: visible;
    padding: 16px;
  }

  /* Layout changes - single column */
  .layout {
    grid-template-columns: 1fr;
    gap: 16px;
    overflow: visible;
  }

  /* Show mobile filter toggle */
  .mobile-filter-toggle {
    display: flex;
  }

  /* Filters panel mobile styles */
  .filters {
    display: none;
    position: relative;
    max-height: none;
    overflow: visible;
    margin-bottom: 16px;
  }

  .filters.open {
    display: block;
  }

  .filters h4 {
    display: none;
  }

  .filters-close-btn {
    display: flex;
  }

  /* Main content scroll */
  main {
    overflow: visible;
    padding-right: 0;
  }

  /* Header responsive */
  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 16px;
  }

  .header-actions {
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
  }

  .header-actions .header-logo {
    display: none;
  }

  .title {
    font-size: 20px;
  }

  .sub {
    font-size: 13px;
  }

  /* Campaign banner */
  .campaign {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
  }

  /* Search section */
  .search {
    flex-direction: column;
  }

  .search input,
  .search select {
    width: 100%;
  }

  .list-top {
    flex-direction: column;
    align-items: stretch;
  }

  /* Job cards - New Layout */
  .job-card {
    padding: 16px;
  }

  .job-card-inner {
    flex-direction: column;
    gap: 16px;
  }

  .job-card-left {
    width: 100%;
  }

  .job-card-right {
    width: 100%;
    align-items: stretch;
    min-width: auto;
  }

  .job-header-row {
    margin-bottom: 12px;
  }

  .logo {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .job-title {
    font-size: 15px;
  }

  .job-title-row {
    flex-wrap: wrap;
    gap: 6px;
  }

  .company {
    font-size: 13px;
  }

  .job-meta-row {
    gap: 6px;
    margin-bottom: 12px;
  }

  .meta-tag {
    font-size: 12px;
    padding: 6px 10px;
  }

  .job-extra-info {
    gap: 4px;
  }

  .job-industries,
  .job-commission-info {
    font-size: 12px;
  }

  /* Incentive boxes on mobile */
  .incentive-boxes {
    width: 100%;
    justify-content: flex-start;
  }

  .incentive-box {
    flex: 1;
    min-width: auto;
    padding: 8px 12px;
  }

  .incentive-label {
    font-size: 10px;
  }

  .incentive-value {
    font-size: 14px;
  }

  /* Job action buttons on mobile */
  .job-action-buttons {
    width: 100%;
  }

  .job-action-buttons .btn-primary,
  .job-action-buttons .btn-outline {
    flex: 1;
    justify-content: center;
    text-align: center;
  }

  /* Job links on mobile */
  .job-links {
    width: 100%;
    align-items: center;
    border-top: 1px solid var(--border-light);
    padding-top: 12px;
    margin-top: 4px;
  }

  .job-menu {
    position: absolute;
    top: 16px;
    right: 16px;
  }

  /* Filter groups */
  .filter-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Buttons */
  .btn-primary,
  .btn-ghost {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .mobile-header {
    padding: 0 12px;
  }

  .container {
    padding: 12px;
  }

  .title {
    font-size: 18px;
  }

  .job-card {
    padding: 14px;
  }

  .job-header-row {
    gap: 12px;
  }

  .logo {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }

  .job-title {
    font-size: 14px;
  }

  .badge {
    font-size: 10px;
    padding: 4px 8px;
  }

  .meta-tag {
    font-size: 11px;
    padding: 5px 8px;
  }

  .incentive-box {
    padding: 6px 10px;
  }

  .incentive-label {
    font-size: 9px;
  }

  .incentive-value {
    font-size: 13px;
  }

  .job-action-buttons .btn-primary,
  .job-action-buttons .btn-outline {
    padding: 8px 12px;
    font-size: 12px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .btn-ghost,
  .header-actions .btn-primary {
    padding: 8px 12px;
    font-size: 12px;
  }

  .header-actions .small {
    width: 100%;
    margin-bottom: 4px;
  }
}

/* Tablet landscape */
@media (min-width: 769px) and (max-width: 1024px) {
  .layout {
    grid-template-columns: 240px 1fr;
    gap: 20px;
  }

  .job-card-right {
    min-width: 180px;
  }

  .incentive-box {
    min-width: 85px;
    padding: 8px 12px;
  }

  .incentive-value {
    font-size: 14px;
  }
}

/* ===== Share Job Modal ===== */
.share-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.share-modal-overlay.active {
  display: flex;
}

.share-modal {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.share-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 4px;
  border-radius: 4px;
  transition: var(--transition);
}

.share-modal-close:hover {
  background: var(--border-light);
  color: var(--text-primary);
}

.share-modal-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--border-light);
}

.share-modal-content {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.share-btn.copy-url {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-primary);
}

.share-btn.copy-url:hover {
  background: var(--border-light);
}

.share-btn.whatsapp {
  background: #25D366;
  color: #fff;
}

.share-btn.whatsapp:hover {
  background: #20bd5a;
}

.share-btn.linkedin {
  background: #0A66C2;
  color: #fff;
}

.share-btn.linkedin:hover {
  background: #0958a8;
}

.share-modal-warning {
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  margin: 0 24px 24px 24px;
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 8px;
}

.share-modal-warning svg {
  flex-shrink: 0;
  color: #d97706;
  margin-top: 2px;
}

.share-modal-warning p {
  font-size: 13px;
  color: #92400e;
  line-height: 1.5;
  margin: 0;
}

.share-modal-details {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.share-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.share-detail-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.share-detail-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.share-detail-value {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
}

/* =============================================
   Utility Classes
   ============================================= */

/* Logo text color variant */
.logo-text-dark {
  color: #0f172a;
}

/* Header logo image */
.header-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Filter actions row */
.filter-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

/* Panel logo image */
.panel-logo-img {
  height: 30px;
  width: auto;
}

/* =============================================
   Enhanced Dashboard Page Styles
   ============================================= */

/* Dashboard Layout */
.dashboard-layout {
  display: flex;
  height: 100vh;
  overflow: hidden;
  background-color: var(--bg);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 20;
  display: none;
}

.mobile-overlay.active {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-overlay {
    display: none !important;
  }
}

/* Dashboard Sidebar */
.dashboard-sidebar {
  position: fixed;
  inset: 0;
  left: 0;
  z-index: 30;
  width: 16rem;
  background: var(--card);
  border-right: 1px solid var(--border);
  transform: translateX(-100%);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 1024px) {
  .dashboard-sidebar {
    transform: translateX(0);
    position: static;
    flex-shrink: 0;
  }
}

.dashboard-sidebar.open {
  transform: translateX(0);
}

/* Sidebar Minimized State */
.dashboard-sidebar.minimized {
  width: 5rem;
}

.dashboard-sidebar.minimized .sidebar-text,
.dashboard-sidebar.minimized .sidebar-logo-text {
  display: none;
}

.dashboard-sidebar.minimized .sidebar-nav-item {
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
}

.dashboard-sidebar.minimized .sidebar-nav-item i {
  margin-right: 0;
}

.dashboard-sidebar.minimized .sidebar-filter-icon {
  margin-right: 0;
}

/* Sidebar Logo */
.sidebar-logo-container {
  height: 4rem;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  border-bottom: 1px solid var(--border-light);
  justify-content: space-between;
  flex-shrink: 0;
}

.sidebar-logo-wrapper {
  display: flex;
  align-items: center;
}

.sidebar-logo-icon {
  background: var(--accent);
  color: white;
  padding: 0.25rem;
  border-radius: 6px;
  margin-right: 0.5rem;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.75rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-logo-text {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1.125rem;
  white-space: nowrap;
}

.sidebar-close-btn {
  color: var(--muted);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.sidebar-close-btn:hover {
  color: var(--text-primary);
  background: var(--border-light);
}

@media (min-width: 1024px) {
  .sidebar-close-btn {
    display: none;
  }
}

.sidebar-toggle-btn {
  display: none;
  margin-left: auto;
  color: var(--muted);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.sidebar-toggle-btn:hover {
  color: var(--text-primary);
}

.sidebar-toggle-btn i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.dashboard-sidebar.minimized .sidebar-toggle-btn i {
  transform: rotate(180deg);
}

@media (min-width: 1024px) {
  .sidebar-toggle-btn {
    display: block;
  }
}

/* Sidebar Navigation */
.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 0.75rem;
}

.sidebar-nav::-webkit-scrollbar {
  width: 4px;
}

.sidebar-nav::-webkit-scrollbar-thumb {
  background-color: var(--border);
  border-radius: 4px;
}

/* Filter Section */
.sidebar-filter-section {
  margin-bottom: 1.5rem;
}

.sidebar-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  color: var(--text-secondary);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.sidebar-nav-item:hover {
  background: var(--border-light);
}

.sidebar-nav-item.active {
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent);
}

.sidebar-nav-item.active i {
  color: var(--accent);
}

.sidebar-nav-item-content {
  display: flex;
  align-items: center;
}

.sidebar-nav-item i {
  width: 1.25rem;
  color: var(--muted);
  text-align: center;
  transition: var(--transition);
}

.sidebar-nav-item:hover i {
  color: var(--text-secondary);
}

.sidebar-text {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Main Menu */
.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* Dashboard Main Content */
.dashboard-main {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  transition: all 0.3s ease;
}

.dashboard-container {
  padding: 1rem;
  max-width: 80rem;
  margin: 0 auto;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  .dashboard-container {
    padding: 2rem;
  }
}

/* Dashboard Header */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1rem;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  margin: 0 -16px 1rem -16px;
}

@media (min-width: 768px) {
  .dashboard-header {
    padding: 1rem 2rem;
    margin: 0 -32px 1.5rem -32px;
  }
}

.dashboard-header-left {
  display: flex;
  align-items: center;
}

.mobile-menu-toggle {
  margin-right: 1rem;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  color: var(--text-primary);
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.dashboard-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .dashboard-title {
    font-size: 1.5rem;
  }
}

.dashboard-header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .dashboard-header-right {
    gap: 1rem;
  }
}

.notification-btn {
  position: relative;
  padding: 0.5rem;
  color: var(--muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.notification-btn:hover {
  color: var(--text-secondary);
}

.notification-btn i {
  font-size: 1.25rem;
}

.notification-badge {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  display: block;
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 0 2px white;
}

/* Notification Wrapper */
.notification-wrapper {
  position: relative;
}

/* Notification Dropdown */
.notification-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  width: 320px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-light);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.notification-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.notification-dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.notification-dropdown-header h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.mark-all-read {
  font-size: 0.75rem;
  color: var(--accent);
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: 500;
}

.mark-all-read:hover {
  text-decoration: underline;
}

.notification-dropdown-list {
  max-height: 300px;
  overflow-y: auto;
}

.notification-item {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
  cursor: pointer;
}

.notification-item:last-child {
  border-bottom: none;
}

.notification-item:hover {
  background: var(--bg);
}

.notification-item.unread {
  background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
}

.notification-item.unread:hover {
  background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
}

.notification-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notification-item-icon.success {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
}

.notification-item-icon.payment {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
}

.notification-item-icon i {
  font-size: 0.875rem;
}

.notification-item-content {
  flex: 1;
  min-width: 0;
}

.notification-item-text {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0 0 0.25rem 0;
}

.notification-item-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.notification-item-time {
  font-size: 0.6875rem;
  color: var(--muted);
}

.notification-dropdown-footer {
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.notification-dropdown-footer a {
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.notification-dropdown-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .notification-dropdown {
    width: 280px;
    right: -50px;
  }
}

.user-avatar {
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
}

/* Notification Banner */
.notification-banner {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.notification-banner-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 100%;
}

@media (min-width: 768px) {
  .notification-banner-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.notification-banner-messages {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .notification-banner-messages {
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
  }
}

.notification-message {
  display: flex;
  align-items: center;
  color: var(--text-primary);
  background: white;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  min-width: 0;
}

@media (min-width: 768px) {
  .notification-message {
    background: transparent;
    padding: 0;
    box-shadow: none;
    flex-shrink: 1;
  }
}

.notification-message .pin-icon {
  margin-right: 0.5rem;
  font-size: 1rem;
  flex-shrink: 0;
}

.notification-message span:last-child {
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .notification-message span:last-child {
    white-space: nowrap;
  }
}

.notification-message:nth-child(2),
.notification-message:nth-child(3) {
  display: flex;
}

@media (min-width: 768px) {
  .notification-message:nth-child(2) {
    display: flex;
  }
  .notification-message:nth-child(3) {
    display: none;
  }
}

@media (min-width: 1280px) {
  .notification-message:nth-child(3) {
    display: flex;
  }
}

.notification-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  width: 100%;
  justify-content: flex-end;
}

@media (min-width: 768px) {
  .notification-banner-actions {
    width: auto;
  }
}

.notification-banner-btn {
  background: var(--accent);
  color: white;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-lg);
  font-weight: 500;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  flex: 1;
  text-align: center;
}

@media (min-width: 768px) {
  .notification-banner-btn {
    flex: none;
  }
}

.notification-banner-btn:hover {
  background: var(--accent-dark);
}

.notification-dismiss-btn {
  color: var(--muted);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  transition: var(--transition);
}

.notification-dismiss-btn:hover {
  color: var(--text-secondary);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: var(--card);
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stat-card:hover {
  box-shadow: var(--shadow-md);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-change {
  font-size: 0.75rem;
  margin-top: 0.25rem;
  font-weight: 500;
}

.stat-change.positive {
  color: var(--success);
}

.stat-change.info {
  color: var(--accent);
}

.stat-change.neutral {
  color: var(--muted);
}

/* Action Banner Wrapper */
.action-banner-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .action-banner-wrapper {
    grid-template-columns: 1fr 280px;
  }
}

/* Main CTA Card */
.action-banner-main {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: white;
  position: relative;
  overflow: hidden;
}

/* Decorative circles */
.action-banner-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.decoration-circle.circle-1 {
  width: 120px;
  height: 120px;
  top: -40px;
  right: -20px;
}

.decoration-circle.circle-2 {
  width: 80px;
  height: 80px;
  bottom: -30px;
  right: 60px;
  background: rgba(255, 255, 255, 0.05);
}

.decoration-circle.circle-3 {
  width: 60px;
  height: 60px;
  top: 50%;
  right: 180px;
  background: rgba(255, 255, 255, 0.04);
}

/* Banner Stats Section */
.action-banner-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 1;
}

.banner-stat {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.banner-stat-value {
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.banner-stat-label {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.banner-stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
}

@media (min-width: 640px) {
  .action-banner-main {
    padding: 1.5rem;
  }
  
  .action-banner-stats {
    gap: 1.5rem;
  }
  
  .banner-stat-value {
    font-size: 1.125rem;
  }
  
  .banner-stat-label {
    font-size: 0.75rem;
  }
  
  .decoration-circle.circle-1 {
    width: 150px;
    height: 150px;
  }
  
  .decoration-circle.circle-2 {
    width: 100px;
    height: 100px;
  }
}

@media (min-width: 1024px) {
  .action-banner-main {
    padding: 1.5rem;
  }
  
  .action-banner-stats {
    gap: 2rem;
  }
}

.action-banner-top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.action-banner-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .action-banner-icon {
    width: 56px;
    height: 56px;
  }
}

.action-banner-icon i {
  font-size: 1.5rem;
  color: white;
}

.action-banner-content {
  flex: 1;
}

.action-banner-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.action-banner-subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.action-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .action-banner-buttons {
    flex-direction: row;
    gap: 0.75rem;
  }
}

.action-banner-buttons .btn-primary {
  background: white;
  color: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  white-space: nowrap;
  flex: 0 0 auto;
}

@media (min-width: 640px) {
  .action-banner-buttons .btn-primary {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
  }
}

.action-banner-buttons .btn-primary:hover {
  background: #f1f5f9;
  transform: translateY(-1px);
}

.action-banner-buttons .btn-outline {
  background: transparent;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  white-space: nowrap;
  flex: 0 0 auto;
}

@media (min-width: 640px) {
  .action-banner-buttons .btn-outline {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
  }
}

.action-banner-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.action-banner-buttons .btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  white-space: nowrap;
  flex: 0 0 auto;
}

@media (min-width: 640px) {
  .action-banner-buttons .btn-ghost {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
  }
}

.action-banner-buttons .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.6);
}

/* Coins Card */
.coins-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.coins-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 1rem;
}

.coins-badge {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.coins-badge i {
  font-size: 1.25rem;
  color: white;
}

.coins-amount {
  display: flex;
  flex-direction: column;
}

.coins-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.coins-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

.coins-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.coins-description {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin: 0 0 1rem 0;
  line-height: 1.4;
}

.coins-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}

.coins-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--border-light);
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.coins-link:hover {
  background: var(--accent);
  color: white !important;
}

.coins-link i {
  font-size: 0.875rem;
  width: 16px;
  color: inherit;
  transition: var(--transition);
}

.coins-link:hover i {
  color: white !important;
}

.btn-dark {
  background: var(--accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-dark:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  background: var(--accent-light);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--accent);
}

.btn-outline-light {
  background: white;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-light:hover {
  background: var(--border-light);
}

/* Two Column Layout */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
  max-width: 100%;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .two-col-layout {
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
  }
}

/* Section Card */
.section-card {
  background: var(--card);
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .section-card {
    padding: 1.5rem;
  }
}

.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.section-header i {
  margin-right: 0.5rem;
}

.section-header .fa-bullhorn {
  color: var(--accent);
}

.section-header .fa-bolt {
  color: #a855f7;
}

.section-header .fa-briefcase {
  color: var(--accent);
}

.section-header .fa-trophy {
  color: #eab308;
}

.section-header .fa-wand-magic-sparkles {
  color: var(--success);
}

.section-header h3 {
  font-weight: 700;
  color: var(--text-primary);
}

/* Ticker */
.ticker-container {
  background: var(--border-light);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  white-space: nowrap;
  max-width: 100%;
}

.ticker-text {
  display: inline-block;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Updates List */
.updates-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.updates-list li {
  display: flex;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.updates-list li:last-child {
  margin-bottom: 0;
}

.update-bullet {
  color: var(--accent);
  margin-right: 0.5rem;
}

/* Quick Actions */
.quick-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 100%;
}

.quick-action-btn {
  width: 100%;
  text-align: left;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  border-radius: var(--radius-lg);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .quick-action-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

.quick-action-btn.primary {
  background: var(--accent);
  color: white;
}

.quick-action-btn.primary:hover {
  background: var(--accent-dark);
}

.quick-action-btn.secondary {
  background: var(--border-light);
  color: var(--text-primary);
}

.quick-action-btn.secondary:hover {
  background: var(--border);
}

/* Recommended Jobs */
.recommended-jobs {
  margin-bottom: 1.5rem;
}

.jobs-scroll-container {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.jobs-scroll-container::-webkit-scrollbar {
  display: none;
}

.job-pill {
  background: var(--card);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
}

.job-pill:hover {
  border-color: var(--accent-light);
}

.job-pill-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-right: 0.5rem;
}

.job-pill-tag {
  font-size: 0.625rem;
  background: var(--border-light);
  color: var(--muted);
  padding: 0.125rem 0.375rem;
  border-radius: var(--radius-sm);
  margin-right: 0.5rem;
}

.job-pill-price {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--success);
}

/* Offers Grid */
.offers-section {
  margin-bottom: 1.5rem;
}

.offers-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.offers-header h3 {
  font-weight: 700;
  color: var(--text-primary);
}

.offers-header a {
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: none;
}

.offers-header a:hover {
  color: var(--text-primary);
}

.offers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .offers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.offer-card {
  position: relative;
  height: 9rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}

.offer-card:nth-child(1) {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
}

.offer-card:nth-child(2) {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #dc2626 100%);
}

.offer-card:nth-child(3) {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #6366f1 100%);
}

.offer-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.offer-card::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.offer-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.offer-card-overlay {
  display: none;
}

.offer-card-badge {
  position: relative;
  z-index: 1;
  width: fit-content;
  font-size: 0.625rem;
  font-weight: 700;
  color: white;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.offer-card-badge.limited {
  background: rgba(255, 255, 255, 0.3);
}

.offer-card-badge.hot {
  background: rgba(255, 255, 255, 0.3);
}

.offer-card-badge.free {
  background: rgba(255, 255, 255, 0.3);
}

.offer-card-text {
  position: relative;
  z-index: 1;
  color: white;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Feature Cards */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .feature-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background: var(--card);
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
}

.feature-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.feature-card-header i {
  margin-right: 0.5rem;
}

.feature-card-header.indigo i {
  color: var(--accent);
}

.feature-card-header.purple i {
  color: #a855f7;
}

.feature-card-header.blue i {
  color: #3b82f6;
}

.feature-card-header h4 {
  font-weight: 700;
  font-size: 0.875rem;
}

.feature-card-text {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  height: 2rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.feature-card-btn {
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.feature-card-btn:hover {
  background: var(--accent-dark);
}

/* Pipeline */
.pipeline-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
  overflow: visible;
}

.pipeline-card .section-header {
  margin-bottom: 1rem;
}

.pipeline-card .section-header i {
  color: var(--accent);
}

.pipeline-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .pipeline-stats {
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
  }
}

@media (min-width: 768px) {
  .pipeline-stats {
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
  }
}

.pipeline-stat {
  text-align: center;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 1rem 0.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  position: relative;
  transition: var(--transition);
}

.pipeline-stat:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.pipeline-stat:nth-child(1) .pipeline-stat-value { color: #6366f1; }
.pipeline-stat:nth-child(2) .pipeline-stat-value { color: #f59e0b; }
.pipeline-stat:nth-child(3) .pipeline-stat-value { color: #3b82f6; }
.pipeline-stat:nth-child(4) .pipeline-stat-value { color: #8b5cf6; }
.pipeline-stat:nth-child(5) .pipeline-stat-value { color: #10b981; }
.pipeline-stat:nth-child(6) .pipeline-stat-value { color: #22c55e; }

@media (min-width: 640px) {
  .pipeline-stat {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 1rem 1.25rem;
    min-width: 90px;
  }
}

.pipeline-stat-value {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  background: linear-gradient(135deg, var(--accent) 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.pipeline-stat:nth-child(1) .pipeline-stat-value {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pipeline-stat:nth-child(2) .pipeline-stat-value {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pipeline-stat:nth-child(3) .pipeline-stat-value {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pipeline-stat:nth-child(4) .pipeline-stat-value {
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pipeline-stat:nth-child(5) .pipeline-stat-value {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pipeline-stat:nth-child(6) .pipeline-stat-value {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pipeline-stat-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

/* Leaderboard */
.leaderboard-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.leaderboard-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.leaderboard-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.leaderboard-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.leaderboard-item:first-child {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-color: #fcd34d;
}

.leaderboard-item:nth-child(2) {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-color: #cbd5e1;
}

.leaderboard-item:nth-child(3) {
  background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
  border-color: #fb923c;
}

.leaderboard-item:last-child {
  border-bottom: none;
}

.leaderboard-item-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.leaderboard-rank {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
}

.leaderboard-item:first-child .leaderboard-rank {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.leaderboard-item:nth-child(2) .leaderboard-rank {
  background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(100, 116, 139, 0.4);
}

.leaderboard-item:nth-child(3) .leaderboard-rank {
  background: linear-gradient(135deg, #fb923c 0%, #ea580c 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.4);
}

.leaderboard-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
}

.leaderboard-period {
  font-size: 0.6875rem;
  color: var(--muted);
  font-weight: 500;
}

.leaderboard-earnings {
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* AI Job Matcher */
.ai-matcher-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.ai-matcher-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.ai-matcher-title {
  display: flex;
  align-items: center;
}

.ai-matcher-title h3 {
  font-weight: 700;
  color: var(--text-primary);
}

.ai-matcher-badge {
  font-size: 0.625rem;
  background: var(--border-light);
  border: 1px solid var(--border);
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius-sm);
  color: var(--muted);
}

.ai-matcher-description {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.ai-matcher-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .ai-matcher-content {
    flex-direction: row;
  }
}

.ai-matcher-input {
  flex: 1;
}

.ai-matcher-textarea {
  width: 100%;
  height: 6rem;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  resize: none;
  transition: var(--transition);
}

.ai-matcher-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.ai-matcher-results {
  width: 100%;
}

@media (min-width: 768px) {
  .ai-matcher-results {
    width: 33.333%;
  }
}

.ai-matcher-results-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.ai-matcher-results-header i {
  color: var(--muted);
  margin-right: 0.5rem;
}

.ai-matcher-results-header span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
}

.ai-matcher-results-empty {
  font-size: 0.75rem;
  color: var(--muted);
}

.ai-matcher-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .ai-matcher-actions {
    flex-direction: row;
    gap: 0.75rem;
  }
}

.btn-upload {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  background: white;
  cursor: pointer;
  transition: var(--transition);
}

@media (min-width: 640px) {
  .btn-upload {
    width: auto;
  }
}

.btn-upload:hover {
  background: rgba(37, 99, 235, 0.1);
}

.btn-upload i {
  margin-right: 0.5rem;
}

.btn-find-matches {
  width: 100%;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: white;
  border-radius: var(--radius-lg);
  font-size: 0.75rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

@media (min-width: 640px) {
  .btn-find-matches {
    width: auto;
  }
}

.btn-find-matches:hover {
  background: var(--accent-dark);
}

/* Dashboard Footer */
.dashboard-footer {
  font-size: 0.75rem;
  color: var(--muted);
  padding-bottom: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .dashboard-footer {
    text-align: left;
  }
}
