/* Express Entry Hub - Common Styles */
/* This file contains styles shared across all templates */

:root {
    /* Color Palette */
    --primary-blue: #1e40af;
    --primary-blue-dark: #1e3a8a;
    --primary-blue-light: #3b82f6;
    --accent-gold: #f59e0b;
    --accent-gold-dark: #d97706;
    --accent-purple: #8b5cf6;
    --accent-teal: #0d9488;

    /* Background Gradients */
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    --gradient-blue: linear-gradient(135deg, #0c4a6e 0%, #1e40af 100%);
    --gradient-admin: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --gradient-roadmap: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);

    /* Typography */
    --font-primary: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Courier New', 'SF Mono', Monaco, 'Cascadia Code', monospace;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;

    /* Z-index layers */
    --z-background: -10;
    --z-base: 0;
    --z-elevated: 10;
    --z-overlay: 100;
    --z-modal: 1000;
    --z-toast: 1100;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

a {
    color: var(--primary-blue-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.grid {
    display: grid;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.gap-4 {
    gap: var(--spacing-md);
}

.gap-8 {
    gap: var(--spacing-xl);
}

.text-center {
    text-align: center;
}

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

.font-mono {
    font-family: var(--font-mono);
}

.opacity-75 {
    opacity: 0.75;
}

.opacity-50 {
    opacity: 0.5;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-blue) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: white;
}

.btn-accent:hover {
    background: linear-gradient(135deg, var(--accent-gold-dark) 0%, #b45309 100%);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.card-header {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

/* Forms */
.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: white;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-blue-light);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5em;
    padding-right: 3rem;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-check {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
}

.form-check-label {
    cursor: pointer;
}

/* Alerts & Notifications */
.alert {
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

/* Progress Bars */
.progress-container {
    width: 100%;
    margin: var(--spacing-lg) 0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue-light) 0%, var(--accent-purple) 100%);
    border-radius: var(--radius-full);
    transition: width var(--transition-slow) ease;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    margin-top: var(--spacing-xs);
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Loading States */
.loading {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal);
}

.loading-spinner {
    width: 3rem;
    height: 3rem;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-blue-light);
    animation: spin 1s linear infinite;
}

.loading-text {
    margin-top: var(--spacing-md);
    font-size: 1.125rem;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.animate-slide-in {
    animation: slideInRight 0.3s ease forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }

    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.875rem;
    }

    .card {
        padding: var(--spacing-md);
    }

    .btn {
        padding: 0.625rem 1.25rem;
    }
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    a {
        color: black !important;
        text-decoration: underline;
    }

    .card {
        border: 1px solid #ddd !important;
        background: white !important;
        box-shadow: none !important;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.focus-visible:focus {
    outline: 2px solid var(--primary-blue-light);
    outline-offset: 2px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Selection */
::selection {
    background: rgba(59, 130, 246, 0.3);
    color: white;
}

/* EEH Specific Components */
.eeh-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.eeh-badge--success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.eeh-badge--warning {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.eeh-badge--error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.eeh-badge--info {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.eeh-badge--premium {
    background: linear-gradient(135deg, #f0ad4e 0%, #ec971f 100%);
    color: #1d2327;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.eeh-button-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.eeh-button-group--vertical {
    flex-direction: column;
    align-items: flex-start;
}

.eeh-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.eeh-data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.eeh-data-table th {
    background: rgba(255, 255, 255, 0.1);
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.eeh-data-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.eeh-data-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.eeh-data-table tr:last-child td {
    border-bottom: none;
}

.eeh-form-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.eeh-form-section-header {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.eeh-form-section-header h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.95);
}

.eeh-form-section-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
}

.eeh-icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.eeh-icon-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.eeh-icon-button:active {
    transform: translateY(0);
}

.eeh-icon-button--primary {
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-blue) 100%);
    border: none;
}

.eeh-icon-button--primary:hover {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
}

.eeh-icon-button--accent {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    border: none;
}

.eeh-icon-button--accent:hover {
    background: linear-gradient(135deg, var(--accent-gold-dark) 0%, #b45309 100%);
}

.eeh-loading-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.eeh-loading-indicator .spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-blue-light);
    animation: spin 1s linear infinite;
    margin-bottom: 16px;
}

.eeh-loading-indicator p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin: 0;
}

.eeh-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.eeh-modal.active {
    opacity: 1;
    visibility: visible;
}

.eeh-modal-content {
    background: var(--gradient-dark);
    border-radius: 16px;
    padding: 32px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.eeh-modal.active .eeh-modal-content {
    transform: translateY(0);
}

.eeh-modal-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.eeh-modal-header h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.95);
}

.eeh-modal-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
}

.eeh-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.eeh-modal-close:hover {
    color: white;
}

.eeh-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 24px 0;
}

.eeh-pagination-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.eeh-pagination-button:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.eeh-pagination-button.active {
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-blue) 100%);
    border: none;
}

.eeh-pagination-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.eeh-pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.5);
}

.eeh-progress-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 32px 0;
    position: relative;
}

.eeh-progress-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
    z-index: 1;
}

.eeh-progress-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.eeh-progress-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    transition: all 0.3s ease;
}

.eeh-progress-step.active .eeh-progress-step-circle {
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-blue) 100%);
    border-color: var(--primary-blue-light);
    color: white;
    transform: scale(1.1);
}

.eeh-progress-step.completed .eeh-progress-step-circle {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: #10b981;
    color: white;
}

.eeh-progress-step.completed .eeh-progress-step-circle::after {
    content: '✓';
    font-size: 1.25rem;
}

.eeh-progress-step-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    max-width: 100px;
}

.eeh-progress-step.active .eeh-progress-step-label {
    color: white;
    font-weight: 600;
}

.eeh-search-box {
    position: relative;
    max-width: 400px;
}

.eeh-search-box input {
    width: 100%;
    padding: 12px 16px 12px 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.eeh-search-box input:focus {
    outline: none;
    border-color: var(--primary-blue-light);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.eeh-search-box::before {
    content: '🔍';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

.eeh-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 24px;
}

.eeh-tab {
    padding: 12px 24px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.eeh-tab:hover {
    color: white;
}

.eeh-tab.active {
    color: white;
}

.eeh-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue-light) 0%, var(--accent-purple) 100%);
    border-radius: 3px 3px 0 0;
}

.eeh-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.eeh-tab-content.active {
    display: block;
}

.eeh-tooltip {
    position: relative;
    display: inline-block;
}

.eeh-tooltip .eeh-tooltip-text {
    visibility: hidden;
    position: absolute;
    z-index: var(--z-tooltip);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.eeh-tooltip .eeh-tooltip-text::after {
    content: '';
    position: absolute;
    border-width: 5px;
    border-style: solid;
}

.eeh-tooltip:hover .eeh-tooltip-text {
    visibility: visible;
    opacity: 1;
}

.eeh-tooltip--top .eeh-tooltip-text {
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
}

.eeh-tooltip--top .eeh-tooltip-text::after {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-color: rgba(0, 0, 0, 0.9) transparent transparent transparent;
}

.eeh-tooltip--bottom .eeh-tooltip-text {
    top: 125%;
    left: 50%;
    transform: translateX(-50%);
}

.eeh-tooltip--bottom .eeh-tooltip-text::after {
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-color: transparent transparent rgba(0, 0, 0, 0.9) transparent;
}

.eeh-tooltip--left .eeh-tooltip-text {
    right: 125%;
    top: 50%;
    transform: translateY(-50%);
}

.eeh-tooltip--left .eeh-tooltip-text::after {
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.9);
}

.eeh-tooltip--right .eeh-tooltip-text {
    left: 125%;
    top: 50%;
    transform: translateY(-50%);
}

.eeh-tooltip--right .eeh-tooltip-text::after {
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-color: transparent rgba(0, 0, 0, 0.9) transparent transparent;
}

/* Additional EEH Components */
.eeh-wizard {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
}

.eeh-wizard-header {
    margin-bottom: 24px;
    text-align: center;
}

.eeh-wizard-header h2 {
    font-size: 2rem;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.eeh-wizard-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.eeh-wizard-steps {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.eeh-wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    max-width: 200px;
}

.eeh-wizard-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.eeh-wizard-step.active .eeh-wizard-step-number {
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-blue) 100%);
    border-color: var(--primary-blue-light);
    color: white;
    transform: scale(1.1);
}

.eeh-wizard-step.completed .eeh-wizard-step-number {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: #10b981;
    color: white;
}

.eeh-wizard-step.completed .eeh-wizard-step-number::after {
    content: '✓';
    font-size: 1.5rem;
}

.eeh-wizard-step-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.eeh-wizard-step-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.4;
}

.eeh-wizard-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.eeh-wizard-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.eeh-wizard-progress {
    flex: 1;
    margin: 0 24px;
}

.eeh-wizard-progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.eeh-wizard-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue-light) 0%, var(--accent-purple) 100%);
    border-radius: 3px;
    transition: width 0.6s ease;
}

.eeh-wizard-progress-text {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Dashboard Components */
.eeh-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.eeh-dashboard-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.eeh-dashboard-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.eeh-dashboard-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.eeh-dashboard-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.eeh-dashboard-card-icon {
    font-size: 1.5rem;
    color: var(--primary-blue-light);
}

.eeh-dashboard-card-content {
    margin-bottom: 16px;
}

.eeh-dashboard-card-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin: 8px 0;
}

.eeh-dashboard-card-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.eeh-dashboard-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.eeh-dashboard-card-trend {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.eeh-dashboard-card-trend.positive {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.eeh-dashboard-card-trend.negative {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.eeh-dashboard-card-trend.neutral {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Timeline Components */
.eeh-timeline {
    position: relative;
    padding-left: 32px;
    margin: 24px 0;
}

.eeh-timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.eeh-timeline-item {
    position: relative;
    margin-bottom: 24px;
}

.eeh-timeline-item:last-child {
    margin-bottom: 0;
}

.eeh-timeline-dot {
    position: absolute;
    left: -32px;
    top: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.eeh-timeline-item.completed .eeh-timeline-dot {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: #10b981;
}

.eeh-timeline-item.completed .eeh-timeline-dot::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
}

.eeh-timeline-item.current .eeh-timeline-dot {
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-blue) 100%);
    border-color: var(--primary-blue-light);
    animation: pulse 2s infinite;
}

.eeh-timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px;
}

.eeh-timeline-date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.eeh-timeline-title {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 8px;
}

.eeh-timeline-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Status Indicators */
.eeh-status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.eeh-status-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.eeh-status-indicator--success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.eeh-status-indicator--success::before {
    background: #10b981;
}

.eeh-status-indicator--warning {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.eeh-status-indicator--warning::before {
    background: #f59e0b;
}

.eeh-status-indicator--error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.eeh-status-indicator--error::before {
    background: #ef4444;
}

.eeh-status-indicator--info {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.eeh-status-indicator--info::before {
    background: #3b82f6;
}

.eeh-status-indicator--pending {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.eeh-status-indicator--pending::before {
    background: rgba(255, 255, 255, 0.7);
}

/* File Upload Components */
.eeh-file-upload {
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.eeh-file-upload:hover {
    border-color: var(--primary-blue-light);
    background: rgba(59, 130, 246, 0.05);
}

.eeh-file-upload.dragover {
    border-color: var(--primary-blue-light);
    background: rgba(59, 130, 246, 0.1);
    transform: scale(1.02);
}

.eeh-file-upload-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.eeh-file-upload-text h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.95);
}

.eeh-file-upload-text p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.eeh-file-upload-button {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-blue) 100%);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.eeh-file-upload-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.eeh-file-list {
    margin-top: 24px;
}

.eeh-file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 8px;
}

.eeh-file-item:last-child {
    margin-bottom: 0;
}

.eeh-file-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.eeh-file-icon {
    font-size: 1.5rem;
    color: var(--primary-blue-light);
}

.eeh-file-details {
    flex: 1;
}

.eeh-file-name {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2px;
}

.eeh-file-size {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.eeh-file-progress {
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.eeh-file-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue-light) 0%, var(--accent-purple) 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.eeh-file-actions {
    display: flex;
    gap: 8px;
}

/* Empty States */
.eeh-empty-state {
    text-align: center;
    padding: 48px 24px;
}

.eeh-empty-state-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 24px;
}

.eeh-empty-state-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
}

.eeh-empty-state-description {
    color: rgba(255, 255, 255, 0.7);
    max-width: 400px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

/* Responsive Adjustments for EEH Components */
@media (max-width: 768px) {
    .eeh-wizard-steps {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    
    .eeh-wizard-step {
        max-width: 100%;
        width: 100%;
    }
    
    .eeh-dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .eeh-card-grid {
        grid-template-columns: 1fr;
    }
    
    .eeh-timeline {
        padding-left: 24px;
    }
    
    .eeh-timeline-dot {
        left: -24px;
    }
    
    .eeh-file-upload {
        padding: 24px;
    }
    
    .eeh-file-upload-icon {
        font-size: 2rem;
    }
    
    .eeh-file-upload-text h3 {
        font-size: 1.125rem;
    }
    
    .eeh-file-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .eeh-file-info {
        width: 100%;
    }
    
    .eeh-file-progress {
        width: 100%;
    }
    
    .eeh-file-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 480px) {
    .eeh-wizard {
        padding: 24px 16px;
    }
    
    .eeh-wizard-header h2 {
        font-size: 1.5rem;
    }
    
    .eeh-wizard-header p {
        font-size: 1rem;
    }
    
    .eeh-wizard-step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .eeh-wizard-step.completed .eeh-wizard-step-number::after {
        font-size: 1.25rem;
    }
    
    .eeh-dashboard-card {
        padding: 16px;
    }
    
    .eeh-dashboard-card-value {
        font-size: 2rem;
    }
    
    .eeh-timeline {
        padding-left: 16px;
    }
    
    .eeh-timeline-dot {
        left: -16px;
        width: 20px;
        height: 20px;
    }
    
    .eeh-timeline-content {
        padding: 12px;
    }
    
    .eeh-timeline-title {
        font-size: 0.9375rem;
    }
    
    .eeh-timeline-description {
        font-size: 0.8125rem;
    }
    
    .eeh-file-upload {
        padding: 16px;
    }
    
    .eeh-file-upload-icon {
        font-size: 1.5rem;
    }
    
    .eeh-file-upload-button {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
    
    .eeh-empty-state {
        padding: 32px 16px;
    }
    
    .eeh-empty-state-icon {
        font-size: 3rem;
    }
    
    .eeh-empty-state-title {
        font-size: 1.25rem;
    }
    
    .eeh-empty-state-description {
        font-size: 0.875rem;
    }
}

/* Print Styles for EEH Components */
@media print {
    .eeh-wizard,
    .eeh-dashboard-card,
    .eeh-timeline,
    .eeh-file-upload,
    .eeh-empty-state {
        border: 1px solid #ddd !important;
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
    
    .eeh-wizard-header h2,
    .eeh-dashboard-card-title,
    .eeh-timeline-title,
    .eeh-file-upload-text h3,
    .eeh-empty-state-title {
        color: black !important;
        background: none !important;
        -webkit-text-fill-color: black !important;
    }
    
    .eeh-wizard-header p,
    .eeh-dashboard-card-label,
    .eeh-timeline-description,
    .eeh-file-upload-text p,
    .eeh-empty-state-description {
        color: #666 !important;
    }
    
    .eeh-wizard-step-number,
    .eeh-dashboard-card-icon,
    .eeh-timeline-dot,
    .eeh-file-upload-icon,
    .eeh-empty-state-icon {
        color: #666 !important;
        border-color: #666 !important;
        background: white !important;
    }
    
    .eeh-wizard-step.active .eeh-wizard-step-number,
    .eeh-wizard-step.completed .eeh-wizard-step-number,
    .eeh-timeline-item.current .eeh-timeline-dot,
    .eeh-timeline-item.completed .eeh-timeline-dot {
        background: #666 !important;
        border-color: #666 !important;
        color: white !important;
    }
    
    .eeh-dashboard-card-value {
        color: black !important;
    }
    
    .eeh-dashboard-card-trend {
        background: #f5f5f5 !important;
        color: #666 !important;
        border: 1px solid #ddd !important;
    }
    
    .eeh-file-upload {
        border-style: solid !important;
    }
    
    .eeh-file-upload-button {
        background: #666 !important;
        color: white !important;
        border: none !important;
    }
    
    .eeh-file-item {
        border: 1px solid #ddd !important;
        background: white !important;
    }
    
    .eeh-file-name {
        color: black !important;
    }
    
    .eeh-file-size {
        color: #666 !important;
    }
    
    .eeh-file-progress {
        background: #f5f5f5 !important;
    }
    
    .eeh-file-progress-bar {
        background: #666 !important;
    }
}

/* Accessibility Enhancements for EEH Components */
.eeh-wizard-step-number:focus,
.eeh-dashboard-card:focus,
.eeh-timeline-dot:focus,
.eeh-file-upload-button:focus,
.eeh-icon-button:focus,
.eeh-pagination-button:focus,
.eeh-tab:focus {
    outline: 2px solid var(--primary-blue-light);
    outline-offset: 2px;
}

.eeh-wizard-step-number:focus-visible,
.eeh-dashboard-card:focus-visible,
.eeh-timeline-dot:focus-visible,
.eeh-file-upload-button:focus-visible,
.eeh-icon-button:focus-visible,
.eeh-pagination-button:focus-visible,
.eeh-tab:focus-visible {
    outline: 2px solid var(--primary-blue-light);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .eeh-badge,
    .eeh-status-indicator,
    .eeh-dashboard-card-trend {
        border-width: 2px;
    }
    
    .eeh-wizard-step-number,
    .eeh-timeline-dot,
    .eeh-progress-step-circle {
        border-width: 3px;
    }
    
    .eeh-file-upload {
        border-width: 3px;
    }
    
    .eeh-file-item {
        border-width: 2px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .eeh-wizard-step-number,
    .eeh-dashboard-card,
    .eeh-timeline-dot,
    .eeh-file-upload,
    .eeh-icon-button,
    .eeh-pagination-button,
    .eeh-tab {
        transition: none !important;
        animation: none !important;
    }
    
    .eeh-wizard-step.active .eeh-wizard-step-number,
    .eeh-timeline-item.current .eeh-timeline-dot {
        transform: none !important;
    }
    
    .eeh-dashboard-card:hover,
    .eeh-icon-button:hover,
    .eeh-pagination-button:hover,
    .eeh-tab:hover {
        transform: none !important;
    }
    
    .eeh-file-upload.dragover {
        transform: none !important;
    }
    
    .eeh-file-upload-button:hover {
        transform: none !important;
    }
    
    .eeh-progress-step-circle,
    .eeh-wizard-progress-fill,
    .eeh-file-progress-bar {
        transition: none !important;
    }
}

/* Dark Mode Support (if system prefers dark) */
@media (prefers-color-scheme: dark) {
    /* These styles are already dark mode optimized */
}

/* Light Mode Support (if system prefers light) */
@media (prefers-color-scheme: light) {
    body {
        color: #1d2327;
        background: #f0f0f1;
    }
    
    .eeh-wizard,
    .eeh-dashboard-card,
    .eeh-timeline-content,
    .eeh-file-upload,
    .eeh-file-item,
    .eeh-form-section,
    .eeh-data-table,
    .eeh-modal-content {
        background: rgba(255, 255, 255, 0.9);
        border-color: rgba(0, 0, 0, 0.1);
        color: #1d2327;
    }
    
    .eeh-wizard-header h2,
    .eeh-dashboard-card-title,
    .eeh-timeline-title,
    .eeh-file-upload-text h3,
    .eeh-form-section-header h3,
    .eeh-modal-header h2,
    .eeh-empty-state-title {
        color: #1d2327;
        background: none;
        -webkit-text-fill-color: #1d2327;
    }
    
    .eeh-wizard-header p,
    .eeh-dashboard-card-label,
    .eeh-timeline-description,
    .eeh-file-upload-text p,
    .eeh-form-section-header p,
    .eeh-modal-header p,
    .eeh-empty-state-description,
    .eeh-data-table td,
    .eeh-progress-step-label,
    .eeh-wizard-step-description {
        color: #646970;
    }
    
    .eeh-wizard-step-number,
    .eeh-timeline-dot,
    .eeh-progress-step-circle,
    .eeh-file-upload-icon,
    .eeh-empty-state-icon {
        background: rgba(0, 0, 0, 0.05);
        border-color: rgba(0, 0, 0, 0.2);
        color: #646970;
    }
    
    .eeh-wizard-step.active .eeh-wizard-step-number,
    .eeh-progress-step.active .eeh-progress-step-circle,
    .eeh-timeline-item.current .eeh-timeline-dot {
        background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-blue) 100%);
        border-color: var(--primary-blue-light);
        color: white;
    }
    
    .eeh-wizard-step.completed .eeh-wizard-step-number,
    .eeh-progress-step.completed .eeh-progress-step-circle,
    .eeh-timeline-item.completed .eeh-timeline-dot {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        border-color: #10b981;
        color: white;
    }
    
    .eeh-dashboard-card-value {
        color: #1d2327;
    }
    
    .eeh-dashboard-card-icon {
        color: var(--primary-blue-light);
    }
    
    .eeh-dashboard-card-trend.positive {
        background: rgba(16, 185, 129, 0.1);
        color: #10b981;
    }
    
    .eeh-dashboard-card-trend.negative {
        background: rgba(239, 68, 68, 0.1);
        color: #ef4444;
    }
    
    .eeh-dashboard-card-trend.neutral {
        background: rgba(0, 0, 0, 0.05);
        color: #646970;
    }
    
    .eeh-file-upload {
        border-color: rgba(0, 0, 0, 0.2);
    }
    
    .eeh-file-upload:hover {
        border-color: var(--primary-blue-light);
        background: rgba(59, 130, 246, 0.05);
    }
    
    .eeh-file-upload.dragover {
        border-color: var(--primary-blue-light);
        background: rgba(59, 130, 246, 0.1);
    }
    
    .eeh-file-upload-icon {
        color: rgba(0, 0, 0, 0.3);
    }
    
    .eeh-file-upload-button {
        background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-blue) 100%);
        color: white;
    }
    
    .eeh-file-upload-button:hover {
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    }
    
    .eeh-file-icon {
        color: var(--primary-blue-light);
    }
    
    .eeh-file-name {
        color: #1d2327;
    }
    
    .eeh-file-size {
        color: #646970;
    }
    
    .eeh-file-progress {
        background: rgba(0, 0, 0, 0.1);
    }
    
    .eeh-file-progress-bar {
        background: linear-gradient(90deg, var(--primary-blue-light) 0%, var(--accent-purple) 100%);
    }
    
    .eeh-empty-state-icon {
        color: rgba(0, 0, 0, 0.2);
    }
    
    .eeh-badge--success {
        background: rgba(16, 185, 129, 0.1);
        color: #10b981;
        border-color: rgba(16, 185, 129, 0.3);
    }
    
    .eeh-badge--warning {
        background: rgba(245, 158, 11, 0.1);
        color: #f59e0b;
        border-color: rgba(245, 158, 11, 0.3);
    }
    
    .eeh-badge--error {
        background: rgba(239, 68, 68, 0.1);
        color: #ef4444;
        border-color: rgba(239, 68, 68, 0.3);
    }
    
    .eeh-badge--info {
        background: rgba(59, 130, 246, 0.1);
        color: #3b82f6;
        border-color: rgba(59, 130, 246, 0.3);
    }
    
    .eeh-badge--premium {
        background: linear-gradient(135deg, #f0ad4e 0%, #ec971f 100%);
        color: #1d2327;
        border-color: rgba(212, 175, 55, 0.3);
    }
    
    .eeh-status-indicator--success {
        background: rgba(16, 185, 129, 0.1);
        color: #10b981;
        border-color: rgba(16, 185, 129, 0.3);
    }
    
    .eeh-status-indicator--warning {
        background: rgba(245, 158, 11, 0.1);
        color: #f59e0b;
        border-color: rgba(245, 158, 11, 0.3);
    }
    
    .eeh-status-indicator--error {
        background: rgba(239, 68, 68, 0.1);
        color: #ef4444;
        border-color: rgba(239, 68, 68, 0.3);
    }
    
    .eeh-status-indicator--info {
        background: rgba(59, 130, 246, 0.1);
        color: #3b82f6;
        border-color: rgba(59, 130, 246, 0.3);
    }
    
    .eeh-status-indicator--pending {
        background: rgba(0, 0, 0, 0.05);
        color: #646970;
        border-color: rgba(0, 0, 0, 0.2);
    }
    
    .eeh-icon-button {
        background: rgba(0, 0, 0, 0.05);
        border-color: rgba(0, 0, 0, 0.2);
        color: #1d2327;
    }
    
    .eeh-icon-button:hover {
        background: rgba(0, 0, 0, 0.1);
        border-color: rgba(0, 0, 0, 0.3);
    }
    
    .eeh-icon-button--primary {
        background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-blue) 100%);
        border: none;
        color: white;
    }
    
    .eeh-icon-button--primary:hover {
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    }
    
    .eeh-icon-button--accent {
        background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
        border: none;
        color: white;
    }
    
    .eeh-icon-button--accent:hover {
        background: linear-gradient(135deg, var(--accent-gold-dark) 0%, #b45309 100%);
    }
    
    /* Additional missing components */
    .eeh-tooltip {
        position: relative;
        display: inline-block;
    }
    
    .eeh-tooltip .eeh-tooltip-text {
        visibility: hidden;
        position: absolute;
        z-index: var(--z-tooltip);
        background: rgba(0, 0, 0, 0.9);
        color: white;
        padding: 8px 12px;
        border-radius: 6px;
        font-size: 0.75rem;
        white-space: nowrap;
        opacity: 0;
        transition: opacity 0.2s ease;
        pointer-events: none;
    }
    
    .eeh-tooltip .eeh-tooltip-text::after {
        content: '';
        position: absolute;
        border-width: 5px;
        border-style: solid;
    }
    
    .eeh-tooltip:hover .eeh-tooltip-text {
        visibility: visible;
        opacity: 1;
    }
    
    .eeh-tooltip--top .eeh-tooltip-text {
        bottom: 125%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .eeh-tooltip--top .eeh-tooltip-text::after {
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-color: rgba(0, 0, 0, 0.9) transparent transparent transparent;
    }
    
    .eeh-tooltip--bottom .eeh-tooltip-text {
        top: 125%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .eeh-tooltip--bottom .eeh-tooltip-text::after {
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-color: transparent transparent rgba(0, 0, 0, 0.9) transparent;
    }
    
    .eeh-tooltip--left .eeh-tooltip-text {
        right: 125%;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .eeh-tooltip--left .eeh-tooltip-text::after {
        left: 100%;
        top: 50%;
        transform: translateY(-50%);
        border-color: transparent transparent transparent rgba(0, 0, 0, 0.9);
    }
    
    .eeh-tooltip--right .eeh-tooltip-text {
        left: 125%;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .eeh-tooltip--right .eeh-tooltip-text::after {
        right: 100%;
        top: 50%;
        transform: translateY(-50%);
        border-color: transparent rgba(0, 0, 0, 0.9) transparent transparent;
    }
    
    /* Close the light mode media query */
}

/* Add missing z-index variable */
:root {
    --z-tooltip: 1050;
}

