/* Landing Page Styles - Moved to individual view file */

/* Essential CSS Variables - Used throughout the application */
:root {
    --primary: #8B5CF6;
    --primary-light: #DDD6FE;
    --secondary: #F3F4F6;
    --accent: #E9D5FF;
    --text-dark: #2C3E50;
    --text-light: #5D6D7E;
    --white: #FFFBF5;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Dynamic Layout for Step3 Upload Sections */
#upload-sections-container {
    display: grid;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

/* Non-UAE Layout: 2+2+1 (2 left, 2 right, 1 center) */
#upload-sections-container.non-uae-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    justify-items: center;
    align-items: start;
}

#upload-sections-container.non-uae-layout .upload-section:nth-child(1),
#upload-sections-container.non-uae-layout .upload-section:nth-child(2) {
    grid-column: span 1;
    width: 100%;
    max-width: 400px;
}

#upload-sections-container.non-uae-layout .upload-section:nth-child(3),
#upload-sections-container.non-uae-layout .upload-section:nth-child(4) {
    grid-column: span 1;
    width: 100%;
    max-width: 400px;
}

#upload-sections-container.non-uae-layout .upload-section:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    max-width: 400px;
}

/* UAE Layout: 3+3 (3 left, 3 right) */
#upload-sections-container.uae-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    justify-items: center;
    align-items: start;
}

#upload-sections-container.uae-layout .upload-section:nth-child(1),
#upload-sections-container.uae-layout .upload-section:nth-child(3),
#upload-sections-container.uae-layout .upload-section:nth-child(5) {
    grid-column: 1;
    width: 100%;
    max-width: 400px;
}

#upload-sections-container.uae-layout .upload-section:nth-child(2),
#upload-sections-container.uae-layout .upload-section:nth-child(4),
#upload-sections-container.uae-layout .upload-section:nth-child(6) {
    grid-column: 2;
    width: 100%;
    max-width: 400px;
}

/* File selection icons - ensure green check icons */
.file-upload-info .fas.fa-check-circle {
    color: #10b981 !important;
    font-size: 1.2rem;
}

.file-upload-info .fas.fa-cloud-upload-alt {
    color: #6b7280;
    font-size: 1.2rem;
}

/* File upload section hover effects */
.file-upload-section:hover .file-upload-info .fas.fa-cloud-upload-alt {
    color: #8B5CF6;
}

/* Ensure file selection icons are always green */
.file-upload-info i[class*="fa-check-circle"] {
    color: #10b981 !important;
}

/* File selection state styling */
.file-upload-section.file-selected .file-upload-info {
    background: #f0fdf4;
    border-color: #10b981;
}

.file-upload-section.file-selected .file-upload-info .fas.fa-check-circle {
    color: #10b981 !important;
    animation: checkPulse 0.6s ease-in-out;
}

@keyframes checkPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Previously uploaded file sections - consistent sizing */
.previously-uploaded-section {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
    margin-top: 0.5rem;
}

.previously-uploaded-section h4 {
    margin: 0 0 0.5rem 0;
    font-size: 0.875rem;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.previously-uploaded-files {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.previously-uploaded-files > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: white;
    min-height: 50px;
}

.previously-uploaded-files .file-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
}

.previously-uploaded-files .file-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #upload-sections-container.non-uae-layout,
    #upload-sections-container.uae-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        justify-items: center;
    }
    
    #upload-sections-container.non-uae-layout .upload-section:nth-child(5),
    #upload-sections-container.uae-layout .upload-section {
        grid-column: span 1;
        max-width: 100%;
        width: 100%;
    }
    
    .previously-uploaded-files > div {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .previously-uploaded-files .file-actions {
        justify-content: center;
    }
}

/* Admin Dashboard Styles */
.admin-dashboard {
    padding: 0.25rem;
    background: #FFFBF5;
    min-height: 100vh;
}

    /* Ensure header actions are properly positioned */
    .admin-dashboard .header-content {
        display: flex ;
        flex-direction: row ;
        align-items: center ;
        justify-content: space-between ;
        gap: 1rem;
    }

    .admin-dashboard .header-actions {
        display: flex ;
        align-items: center ;
        gap: 1rem;
        flex-wrap: nowrap;
        justify-content: flex-end ;
        flex-shrink: 0;
    }

    .admin-dashboard .search-box {
        flex-shrink: 0;
    }

    .admin-dashboard .btn-primary {
        flex-shrink: 0;
        white-space: nowrap;
    }

.top-nav-enhanced {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #8B5CF6 0%, #764ba2 100%);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    margin-bottom: 1.5rem;
    color: white;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

    .nav-brand i {
        color: white;
        font-size: 1.5rem;
    }

.nav-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-profile {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .user-profile i {
        color: white;
    }

.welcome-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

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

.welcome-text-left h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
}

.welcome-text-left p {
    font-size: 1rem;
    color: #4a5568;
    margin: 0;
    line-height: 1.3;
}

.welcome-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.warning-icon-center {
    text-align: center;
    margin-bottom: 0.5rem;
}

.warning-text {
    text-align: center;
    margin-bottom: 1rem;
}

    .warning-text h2 {
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0 0 0.25rem 0;
        color: #1a202c;
        line-height: 1.2;
    }

    .warning-text p {
        font-size: 0.95rem;
        color: #4a5568;
        line-height: 1.3;
        margin: 0 0 0.25rem 0;
    }

.action-buttons {
    display: flex;
    gap: 0.1rem;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    min-width: 200px;
}

    /* Ensure action buttons are always horizontal */
    .action-buttons .btn {
        display: inline-flex;
        flex-shrink: 0;
        width: auto;
        min-width: auto;
    }

/* Interactive elements container */
.interactive-elements {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center; /* Centers everything */
    gap: 0.25rem; /* Very small gap between search box and buttons */
    margin: 2rem auto 0; /* Reduced top margin and centered horizontally */
    width: 100%;
    max-width: 800px; /* Limit width for better centering on large screens */
}

/* Download button styling */
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    text-decoration: none;
}

.download-btn:active {
    transform: translateY(0);
}

.download-btn i {
    font-size: 1rem;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .interactive-elements {
        flex-direction: column;
        gap: 1.5rem;
        margin: 1rem auto 0;
    }
    
    .search-box {
        width: 100%;
        max-width: 300px;
    }
    
    .search-input {
        width: 100%;
    }
    
    .action-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .action-buttons .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}

/* Search box */
.search-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 0.25rem;
}
.search-box i {
        position: absolute;
        left: 0.8rem;
        top: 50%;
        transform: translateY(-50%);
        color: #9ca3af;
        font-size: 1rem;
        pointer-events: none;
}

.search-input {
    padding: 0.5rem 0.75rem 0.5rem 2rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
    width: 250px;
    transition: all 0.2s ease;
}

.search-input:focus {
        outline: none;
        border-color: #8B5CF6;
        box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.15);
}

/* Action buttons */
.action-buttons {
    display: flex;
    gap: 0.5rem; /* Gap between individual buttons */
    align-items: center;
    justify-content: center;
    margin-left: -0.5rem; /* Pulls buttons closer to search box */
}

.action-buttons .btn {
        padding: 1.25rem 2.5rem;  /* Extra large padding for big buttons */
        border-radius: 10px;       /* Larger border radius */
        white-space: nowrap;
        font-size: 0.8rem;         /* Bigger font size */
        font-weight: 500;          /* Bolder font weight */
        transition: all 0.2s ease;
        border: none;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;              /* More space between icon and text */
        min-width: 200px;          /* Much wider buttons */
        justify-content: center;
        height: 45px;               /* Much taller buttons */
}

.action-buttons .btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.action-buttons .btn:active {
        transform: translateY(0);
}
.warning-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    animation: pulse 2s infinite;
}

    .warning-circle i {
        font-size: 2.5rem;
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

.welcome-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B5CF6 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    animation: pulse 2s infinite;
}

    .welcome-circle i {
        font-size: 2.5rem;
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

.welcome-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #8B5CF6 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    animation: pulse 2s infinite;
}

    .welcome-circle i {
        font-size: 3rem;
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

.warning-text {
    text-align: center;
    margin-bottom: 2rem;
    color: #1a202c;
}

    .warning-text h2 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: #1a202c;
    }

    .warning-text p {
        font-size: 1.1rem;
        color: #4a5568;
        line-height: 1.5;
        margin: 0;
    }

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Content Cards */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.content-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-header {
    background: #f8fafc;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .card-header h3 {
        margin: 0;
        color: #374151;
        font-size: 1.25rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

        .card-header h3 i {
            color: #8B5CF6;
        }

.card-body {
    padding: 2rem;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

    .status-badge.first-user {
        background: linear-gradient(135deg, #8B5CF6 0%, #764ba2 100%);
        color: white;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }

    .status-badge.rejected {
        background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
        color: white;
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    }

    .status-badge.pending {
        background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
        color: white;
        box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    }

    .status-badge.active {
        background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
        color: white;
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    }

/* Quick Actions */
.quick-actions-enhanced {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.welcome-message-enhanced {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e0f2fe;
}

    .welcome-message-enhanced h4 {
        color: #0c4a6e;
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
    }

    .welcome-message-enhanced p {
        color: #0369a1;
        margin: 0;
        font-size: 0.9rem;
    }

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

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    text-align: center;
    justify-content: center;
}

    .action-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        text-decoration: none;
    }

    .action-btn.primary {
        background: linear-gradient(135deg, #8B5CF6 0%, #764ba2 100%);
        color: white;
    }

    .action-btn.secondary {
        background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
        color: white;
    }

    .action-btn.warning {
        background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
        color: #FFFBF5;
    }

.action-btn-enhanced {
    border: none;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .nav-tabs {
        flex-direction: row;
        gap: 0.5rem;
    }

    .nav-tab {
        text-align: center;
        justify-content: center;
    }

    .admin-dashboard {
        padding: 1rem;
    }

    .top-nav {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Edit Form Styles */
.edit-step-content {
    margin-bottom: 2rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

    .form-control:focus {
        outline: none;
        border-color: #8B5CF6;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

.validation-error {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    border: none;
    border-radius: 6px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
    color: white;
}

    .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    }

.btn-outline {
    background: white;
    color: #374151;
    border: 1px solid #e5e7eb;
}

    .btn-outline:hover {
        background: #f8fafc;
        border-color: #cbd5e1;
    }

.btn-success {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: white;
}

    .btn-success:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    }

.btn-sm {
    padding: 0.4rem 0.65rem;
    font-size: 0.8rem;
}

/* Edit Actions Styling for Home Index */
.edit-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

    .edit-actions .btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1.1rem;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.2s ease;
        border: none;
        cursor: pointer;
    }

    .edit-actions .btn-primary {
        background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
        color: white;
        box-shadow: 0 2px 4px rgba(139, 92, 246, 0.2);
    }

        .edit-actions .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
        }

    .edit-actions .btn-outline {
        background: transparent;
        color: #8B5CF6;
        border: 1px solid #8B5CF6;
    }

        .edit-actions .btn-outline:hover {
            background: #8B5CF6;
            color: white;
            transform: translateY(-2px);
        }

/* Responsive design for edit actions */
@media (max-width: 768px) {
    .edit-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .edit-actions .btn {
            justify-content: center;
        }
}

/* Step Content Styling for Home Index Multi-step Form */
.step-content {
    display: none;
}

    .step-content.active {
        display: block;
    }

    .step-content h4 {
        color: #374151;
        margin-bottom: 1rem;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .step-content .form-group {
        margin-bottom: 1rem;
    }

    .step-content .form-control {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid #d1d5db;
        border-radius: 6px;
        font-size: 0.9rem;
        transition: border-color 0.2s ease;
    }

        .step-content .form-control:focus {
            outline: none;
            border-color: #8B5CF6;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

    .step-content .validation-error {
        display: none;
        color: #ef4444;
        font-size: 0.8rem;
        margin-top: 0.25rem;
    }

    .step-content .form-actions {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .step-content .btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.2s ease;
        border: none;
        cursor: pointer;
        font-size: 0.9rem;
    }

    .step-content .btn-primary {
        background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
        color: white;
        box-shadow: 0 2px 4px rgba(139, 92, 246, 0.2);
    }

        .step-content .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
        }

    .step-content .btn-outline {
        background: transparent;
        color: #8B5CF6;
        border: 2px solid #8B5CF6;
    }

        .step-content .btn-outline:hover {
            background: #8B5CF6;
            color: white;
            transform: translateY(-2px);
        }

    .step-content .btn-success {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        color: white;
        box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
    }

        .step-content .btn-success:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
        }

/* File upload section styling */
.file-upload-section {
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #f8fafc;
    max-width: 300px;
    margin: 0;
}

    .file-upload-section:hover {
        border-color: #8B5CF6;
        background: #f0f4ff;
    }

.file-upload-info i {
    font-size: 1.25rem;
    color: #8B5CF6;
    margin-bottom: 0.5rem;
}

.file-upload-info p {
    margin: 0 0 0.25rem 0;
    color: #374151;
    font-weight: 500;
    font-size: 0.9rem;
}

.file-upload-info small {
    color: #6b7280;
    font-size: 0.8rem;
}

/* File list styling */
#edit-file-list {
    margin-top: 1rem;
}


#edit-file-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    #edit-file-items > div {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem;
        background: white;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        gap: 1rem;
    }

/* Responsive design */
@media (max-width: 768px) {
    .step-content .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

/* Rejected User Section Styles */
.rejected-user-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.rejection-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 12px;
    border: 1px solid #fecaca;
}

.rejection-icon {
    margin-bottom: 1.5rem;
}

    .rejection-icon i {
        font-size: 4rem;
        color: #ef4444;
        animation: pulse 2s infinite;
    }

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

    50% {
        transform: scale(1.05);
    }
}

.rejection-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 1rem;
}

.rejection-message {
    font-size: 1.1rem;
    color: #7f1d1d;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.rejection-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.detail-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

    .detail-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .detail-card h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #374151;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

        .detail-card h3 i {
            color: #8B5CF6;
        }

    .detail-card p {
        color: #6b7280;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .detail-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .detail-card li {
        color: #6b7280;
        padding: 0.5rem 0;
        border-bottom: 1px solid #f1f5f9;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

        .detail-card li:before {
            content: "✓";
            color: #10b981;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .detail-card li:last-child {
            border-bottom: none;
        }

.action-section {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    border: 1px solid #bae6fd;
}

    .action-section h3 {
        font-size: 1.8rem;
        font-weight: 600;
        color: #0c4a6e;
        margin-bottom: 2rem;
    }

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    min-height: 60px;
}

    .btn-large:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

.btn-primary.btn-large {
    background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
    color: white;
    border: none;
}

.btn-secondary.btn-large {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    border: none;
}

.btn-outline.btn-large {
    background: transparent;
    color: #374151;
    border: 2px solid #374151;
}

    .btn-outline.btn-large:hover {
        background: #374151;
        color: white;
    }

.btn-warning.btn-large {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: white;
    border: none;
}

.support-info {
    text-align: center;
    padding: 2rem;
    background: #F3F4F6;
    border-radius: 12px;
    border: 1px solid #DDD6FE;
}

.support-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

    .support-card h4 i {
        color: #8B5CF6;
    }

.support-card p {
    color: #4C1D95;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.support-contacts {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4C1D95;
    font-weight: 500;
}

    .contact-item i {
        color: #8B5CF6;
        font-size: 1.1rem;
    }

/* Responsive design for rejected user section */
@media (max-width: 768px) {
    .rejected-user-section {
        padding: 1rem;
        margin: 1rem;
    }

    .rejection-header h2 {
        font-size: 2rem;
    }

    .rejection-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .action-buttons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .support-contacts {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Slide In Right Animation */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

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

/* Slide In Left Animation */
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

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

/* Slide In Up Animation */
@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

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

/* Slide In Down Animation */
@keyframes slideInDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

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

/* Utility classes for animations */
.slide-in-right {
    animation: slideInRight 0.3s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.3s ease-out;
}

.slide-in-up {
    animation: slideInUp 0.3s ease-out;
}

.slide-in-down {
    animation: slideInDown 0.3s ease-out;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.5;
    color: var(--text-dark);
    background: var(--white);
}

/* Navigation - Moved to landing page view */

/* Hero and Features Section - Moved to landing page view */

/* Login and Register Page Styles - Moved to individual view files */

/* Footer */
.footer {
    background: #A78BFA;
    color: var(--white);
    padding: 3rem 0 1rem;
    text-align: center;
}

    .footer p {
        opacity: 0.8;
    }

/* Admin Dashboard Styles */
.admin-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #FFBF78 0%, #F1F0E8 100%);
    padding: 2rem 0;
}

.admin-header {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    padding: 3rem;
    text-align: center;
}

.admin-header-content {
    max-width: 600px;
    margin: 0 auto;
}

.admin-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFBF78 0%, #FFD699 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 191, 120, 0.3);
}

    .admin-logo i {
        font-size: 2.5rem;
        color: var(--white);
    }

.admin-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.admin-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.admin-content {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.admin-table-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

    .admin-table thead {
        background: linear-gradient(135deg, #FFBF78 0%, #FFD699 100%);
    }

    .admin-table th {
        padding: 1.2rem 1rem;
        text-align: left;
        font-weight: 600;
        color: var(--white);
        font-size: 0.95rem;
    }

    .admin-table td {
        padding: 1rem;
        border-bottom: 1px solid #f0f0f0;
        color: var(--text-dark);
    }

    .admin-table tbody tr:hover {
        background: #FFF8F0;
        transition: background 0.3s ease;
    }

.admin-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.admin-btn-view {
    background: linear-gradient(135deg, #FFBF78 0%, #FFD699 100%);
    color: var(--white);
}

    .admin-btn-view:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 191, 120, 0.3);
        color: var(--white);
        text-decoration: none;
    }

.admin-btn-secondary {
    background: #f8f9fa;
    color: var(--text-dark);
    border: 2px solid #e9ecef;
}

    .admin-btn-secondary:hover {
        background: #e9ecef;
        color: var(--text-dark);
        text-decoration: none;
    }

.admin-btn-approve {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: var(--white);
}

    .admin-btn-approve:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
        color: var(--white);
    }

.admin-btn-reject {
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
    color: var(--white);
}

    .admin-btn-reject:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
        color: var(--white);
    }

.admin-btn-download {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: var(--white);
}

    .admin-btn-download:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(108, 117, 125, 0.3);
        color: var(--white);
        text-decoration: none;
    }

.admin-actions {
    margin-top: 2rem;
    text-align: center;
}

.admin-empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

    .empty-icon i {
        font-size: 2.5rem;
        color: var(--white);
    }

.admin-empty-state h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.admin-empty-state p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Admin Details Styles */
.admin-details-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #FFBF78 0%, #F1F0E8 100%);
    padding: 2rem 0;
}

.admin-details-header {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    padding: 3rem;
    text-align: center;
}

.admin-details-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFBF78 0%, #FFD699 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 191, 120, 0.3);
}

    .admin-details-logo i {
        font-size: 2.5rem;
        color: var(--white);
    }

.admin-details-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.admin-details-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.admin-details-content {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.admin-details-card {
    max-width: 1000px;
    margin: 0 auto;
}

.submission-info {
    margin-bottom: 3rem;
}

    .submission-info h3 {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 1.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #FFBF78;
    }

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.info-item {
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 12px;
    border-left: 4px solid #FFBF78;
}

    .info-item label {
        display: block;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .info-item span {
        color: var(--text-light);
        font-size: 1rem;
    }

.file-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.no-file {
    color: #6c757d;
    font-style: italic;
}

.uploaded-files-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid #FFBF78;
}

    .uploaded-files-section h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 1.5rem;
    }

.files-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.files-table th {
    background: linear-gradient(135deg, #FFBF78 0%, #FFD699 100%);
    color: var(--white);
    padding: 1rem;
    font-weight: 600;
    text-align: left;
}

.files-table td {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.file-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.no-files {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-style: italic;
}

.admin-decision-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #FFBF78;
}

    .admin-decision-section h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 1.5rem;
    }

.decision-actions {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.decision-form {
    flex: 1;
    min-width: 300px;
}

.reject-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reject-reason {
    flex: 1;
}

.reject-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #dc3545;
    margin-bottom: 0.5rem;
}

.reject-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 0.9rem;
    resize: vertical;
    min-height: 100px;
    transition: all 0.3s ease;
}

    .reject-textarea:focus {
        outline: none;
        border-color: #FFBF78;
        box-shadow: 0 0 0 3px rgba(255, 191, 120, 0.1);
    }

.admin-navigation {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e1e5e9;
}

/* Responsive Admin Styles */
@media (max-width: 768px) {
    .admin-header,
    .admin-details-header {
        padding: 2rem 1rem;
    }

        .admin-header h1,
        .admin-details-header h1 {
            font-size: 2rem;
        }

    .admin-content,
    .admin-details-content {
        padding: 1rem;
    }

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

    .decision-actions {
        flex-direction: column;
    }

    .decision-form {
        min-width: auto;
    }

    .file-actions {
        flex-direction: column;
    }

    .admin-table {
        font-size: 0.9rem;
    }

        .admin-table th,
        .admin-table td {
            padding: 0.8rem 0.5rem;
        }
}

/* Company Step Pages Styles - UPDATED */
.company-step-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem 0;
}

/* Override admin dashboard styles when company step container is embedded */
.admin-dashboard .company-step-container {
    min-height: auto;
    background: transparent;
    padding: 0;
    margin-top: 2rem;
}

.admin-dashboard .company-step-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0;
}

    .admin-dashboard .company-step-header h1 {
        font-size: 2rem;
        font-weight: 700;
        color: #1a202c;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, #8B5CF6 0%, #764ba2 100%);
        -webkit-text-fill-color: transparent;
    }

    .admin-dashboard .company-step-header p {
        font-size: 1rem;
        color: #64748b;
        margin-bottom: 1.5rem;
    }

.admin-dashboard .step-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.admin-dashboard .step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

    .admin-dashboard .step-indicator:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 20px;
        right: -0.75rem;
        width: 1.5rem;
        height: 2px;
        background: #e5e7eb;
        z-index: 1;
    }

    .admin-dashboard .step-indicator.completed:not(:last-child)::after {
        background: linear-gradient(135deg, #8B5CF6 0%, #764ba2 100%);
    }

    .admin-dashboard .step-indicator.active:not(:last-child)::after {
        background: linear-gradient(135deg, #8B5CF6 0%, #764ba2 100%);
    }

.admin-dashboard .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.admin-dashboard .step-indicator.active .step-number {
    background: linear-gradient(135deg, #8B5CF6 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.admin-dashboard .step-indicator.completed .step-number {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.admin-dashboard .step-indicator:not(.active):not(.completed) .step-number {
    background: #e5e7eb;
    color: #9ca3af;
}

.admin-dashboard .step-indicator span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
    text-align: center;
}

.admin-dashboard .step-indicator.active span {
    color: #8B5CF6;
}

.admin-dashboard .step-indicator.completed span {
    color: #10b981;
}

.admin-dashboard .company-step-content {
    display: flex;
    padding: 0;
    gap: 1.5rem;
}

.admin-dashboard .company-sidebar {
    width: 280px;
    background: white;
    border-radius: 12px;
    padding: 0.75rem;
    margin-right: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.admin-dashboard .sidebar-section {
    margin-bottom: 1.5rem;
}

    .admin-dashboard .sidebar-section h3 {
        font-size: 1rem;
        font-weight: 600;
        color: #374151;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

        .admin-dashboard .sidebar-section h3 i {
            color: #8B5CF6;
        }

.admin-dashboard .sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #f8fafc;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
}

    .admin-dashboard .sidebar-item:hover {
        background: #f1f5f9;
        transform: translateX(3px);
    }

    .admin-dashboard .sidebar-item i {
        color: #8B5CF6;
        font-size: 1rem;
    }

    .admin-dashboard .sidebar-item span {
        color: #374151 !important;
        font-size: 0.85rem;
        font-weight: 500;
    }

.admin-dashboard .company-form-card {
    flex: 1;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.admin-dashboard .form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.admin-dashboard .form-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B5CF6 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

    .admin-dashboard .form-icon i {
        font-size: 1.5rem;
        color: white;
    }

.admin-dashboard .form-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.admin-dashboard .form-header p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.admin-dashboard .form-group {
    margin-bottom: 1.5rem;
}



    .admin-dashboard .form-group label,
    .admin-dashboard .form-label {
        display: block;
        font-weight: 600;
        color: #374151;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

        .admin-dashboard .form-label i {
            color: #8B5CF6;
            margin-right: 0.5rem;
        }

.admin-dashboard .input-group {
    position: relative;
}

.admin-dashboard .input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    z-index: 2;
}

.admin-dashboard .form-control {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: white;
}

    .admin-dashboard .form-control:focus {
        outline: none;
        border-color: #8B5CF6;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }


.admin-dashboard .form-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.admin-dashboard .company-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    justify-content: center;
}

.admin-dashboard .company-btn-primary {
    background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
    color: white;
}

    .admin-dashboard .company-btn-primary:hover {
        background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }

.admin-dashboard .company-btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #e5e7eb;
}

    .admin-dashboard .company-btn-secondary:hover {
        background: #e5e7eb;
        border-color: #d1d5db;
        transform: translateY(-1px);
    }

.admin-dashboard .company-btn-success {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: white;
}

    .admin-dashboard .company-btn-success:hover {
        background: linear-gradient(135deg, #059669 0%, #10b981 100%);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    }

.admin-dashboard .validation-error {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
}

    .admin-dashboard .validation-error i {
        color: #ef4444;
    }


.admin-dashboard .file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border: 1px solid #0ea5e9;
    border-radius: 6px;
    gap: 1rem;
}

    .admin-dashboard .file-item i {
        color: #0ea5e9;
        font-size: 1.1rem;
    }

    .admin-dashboard .file-item span {
        color: #0c4a6e;
        font-weight: 500;
        font-size: 0.9rem;
        flex: 1;
    }

.admin-dashboard .view-btn {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

    .admin-dashboard .view-btn:hover {
        background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
        transform: translateY(-1px);
    }

.admin-dashboard .review-section {
    background: #f8fafc;
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
}

.admin-dashboard .review-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

    .admin-dashboard .review-item:last-child {
        border-bottom: none;
    }

    .admin-dashboard .review-item label {
        font-weight: 600;
        color: #374151;
        font-size: 0.9rem;
    }

    .admin-dashboard .review-item span {
        color: #6b7280;
        font-size: 0.9rem;
    }

/* Responsive adjustments for admin dashboard embedded company steps */
@media (max-width: 1200px) {
    .admin-dashboard .company-step-content {
        flex-direction: column;
    }

    .admin-dashboard .company-sidebar {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .admin-dashboard .company-step-container {
        margin-top: 1rem;
    }

    .admin-dashboard .company-step-header {
        margin-bottom: 1.5rem;
    }

    .admin-dashboard .step-progress {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .admin-dashboard .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .admin-dashboard .company-form-card {
        padding: 0.75rem;
    }

    .admin-dashboard .form-actions {
        flex-direction: column;
    }

    .admin-dashboard .company-btn {
        width: 100%;
    }
}

/* Company Form Card */
.company-form-card {
    flex: 1;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 200px);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B5CF6 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

    .form-icon i {
        font-size: 2rem;
        color: white;
    }

.form-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.form-header p {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
}

/* Form Groups */
.form-group {
    margin-bottom: 2rem;
}

    .form-group label,
    .form-label {
        display: block;
        font-weight: 600;
        color: #374151;
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
    }

        .form-label i {
            color: #8B5CF6;
            margin-right: 0.5rem;
        }

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #8B5CF6;
    z-index: 2;
}

.form-control {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #1f2937;
}

    .form-control:focus {
        outline: none;
        border-color: #8B5CF6;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        transform: translateY(-2px);
    }

    .form-control::placeholder {
        color: #9ca3af;
    }


/* Uploaded File Display */
.uploaded-file {
    margin-top: 1rem;
    padding: 1rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #059669;
    font-weight: 500;
}

    .file-info i {
        color: #10b981;
    }

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

    .form-actions:has(.company-btn:only-child) {
        justify-content: center;
    }

.company-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 160px;
    justify-content: center;
}

.company-btn-primary {
    background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

    .company-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    }

.company-btn-secondary {
    background: white;
    color: #374151;
    border: 2px solid #e5e7eb;
}

    .company-btn-secondary:hover {
        background: #f8fafc;
        border-color: #d1d5db;
        transform: translateY(-2px);
    }

.company-btn-view {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

    .company-btn-view:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    }

/* Validation Styles */

.validation-error {
    color: #dc2626;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .validation-error i {
        color: #ef4444;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .company-step-container {
        padding: 1rem 0;
    }

    .company-form-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .step-progress {
        gap: 1rem;
    }

    .step-indicator:not(:last-child)::after {
        width: 1rem;
        right: -0.5rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .company-btn {
        width: 100%;
    }
}

/* Animation Keyframes */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Loading States */
.company-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Success States */
.step-indicator.completed .step-number::after {
    content: '✓';
    position: absolute;
    top: -5px;
    right: -5px;
    background: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #10b981;
    border: 2px solid #10b981;
}

/* Company Profile (Display) Styles */
.company-profile-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #FFBF78 0%, #F1F0E8 100%);
    padding: 2rem 0;
}

.company-profile-header {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    padding: 3rem;
    text-align: center;
}

.company-profile-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFBF78 0%, #FFD699 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255,191,120,0.3);
}

    .company-profile-logo i {
        font-size: 2.5rem;
        color: var(--white);
    }

.company-profile-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.company-profile-header p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
}

    .status-badge i {
        font-size: 1rem;
    }

.status-approved {
    background: #e6f4ea;
    color: #1e7e34;
    border: 1px solid #c9e8d3;
}

.status-pending {
    background: #fff4e5;
    color: #cc7a00;
    border: 1px solid #ffe0b3;
}

.company-profile-content {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 2rem;
}

.company-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

    .company-info-grid .info-card {
        background: #f8f9fa;
        border-radius: 12px;
        padding: 1.25rem 1.5rem;
        border-left: 4px solid #FFBF78;
    }

        .company-info-grid .info-card label {
            display: block;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.4rem;
            font-size: 0.9rem;
        }

        .company-info-grid .info-card span {
            color: var(--text-light);
            font-size: 1rem;
        }

.profile-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid #e1e5e9;
}

.company-edit-card {
    margin-top: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid #FFBF78;
    padding: 2rem;
}

.edit-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.edit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFBF78 0%, #FFD699 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 25px rgba(255,191,120,0.3);
}

    .edit-icon i {
        color: var(--white);
        font-size: 2rem;
    }

/* Align the partial form controls to our styles */
#editForm .form-control {
    padding: 0.9rem 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    transition: all 0.3s ease;
}

    #editForm .form-control:focus {
        outline: none;
        border-color: #FFBF78;
        box-shadow: 0 0 0 3px rgba(255,191,120,0.1);
    }

#editForm .btn-primary,
#editForm .btn-success {
    border: none;
    border-radius: 10px;
    padding: 0.8rem 1.2rem;
    font-weight: 600;
}

#editForm .btn-primary {
    background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
    color: var(--white);
}

    #editForm .btn-primary:hover {
        box-shadow: 0 8px 25px rgba(255,191,120,0.3);
    }

#editForm .btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: var(--white);
}

    #editForm .btn-success:hover {
        box-shadow: 0 8px 25px rgba(40,167,69,0.3);
    }

/* Responsive */
@media (max-width: 768px) {
    .company-info-grid {
        grid-template-columns: 1fr;
    }

    .company-profile-header, .company-profile-content {
        padding: 0.75rem;
    }
}

/* Pending Approval Page Styles */
.pending-approval-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #FFBF78 0%, #F1F0E8 100%);
    padding: 2rem 0;
}

.success-alert {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(40,167,69,0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1000;
    transition: opacity 0.3s ease;
}

    .success-alert i {
        font-size: 1.2rem;
    }

.pending-hero {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFBF78 0%, #FFD699 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255,191,120,0.3);
    animation: float 3s ease-in-out infinite;
}

    .hero-icon i {
        font-size: 3rem;
        color: var(--white);
    }

.pending-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.pending-hero p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.status-pulse {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #FFBF78;
    border-radius: 999px;
    animation: pulse 2s infinite;
}

.status-badge {
    background: linear-gradient(135deg, #FFBF78 0%, #FFD699 100%);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,191,120,0.1) 0%, rgba(255,214,153,0.1) 100%);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.pending-content {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 2rem;
}

.tab-navigation {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #f1f3f4;
    padding-bottom: 1rem;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .tab-btn:hover {
        background: #f8f9fa;
        color: var(--text-dark);
    }

    .tab-btn.active {
        background: linear-gradient(135deg, #FFBF78 0%, #FFD699 100%);
        color: var(--white);
        box-shadow: 0 8px 25px rgba(255,191,120,0.3);
    }

.tab-pane {
    display: none;
}

    .tab-pane.active {
        display: block;
    }

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

.company-info-card,
.status-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    border-left: 4px solid #FFBF78;
}

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

.header-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFBF78 0%, #FFD699 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .header-icon i {
        color: var(--white);
        font-size: 1.5rem;
    }

.card-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
}

    .status-indicator.pending {
        background: #fff4e5;
        color: #cc7a00;
        border: 1px solid #ffe0b3;
    }

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item.full-width {
    grid-column: 1 / -1;
}

.info-item label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.info-item span {
    color: var(--text-light);
    font-size: 1rem;
}

.file-section label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.file-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.file-name {
    color: var(--text-light);
    font-size: 0.9rem;
}

.file-buttons {
    display: flex;
    gap: 0.5rem;
}

.file-btn {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
}

    .file-btn.view {
        background: linear-gradient(135deg, #FFBF78 0%, #FFD699 100%);
        color: var(--white);
    }

    .file-btn.download {
        background: #e9ecef;
        color: var(--text-dark);
    }

    .file-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

.no-file {
    color: var(--text-light);
    font-style: italic;
}

.status-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.status-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFBF78 0%, #FFD699 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

    .status-icon i {
        color: var(--white);
        font-size: 1.8rem;
    }

.progress-visualization {
    margin-bottom: 1.5rem;
}

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

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.step.completed .step-icon {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: var(--white);
}

.step.active .step-icon {
    background: linear-gradient(135deg, #FFBF78 0%, #FFD699 100%);
    color: var(--white);
    animation: pulse 2s infinite;
}

.step:not(.completed):not(.active) .step-icon {
    background: #e9ecef;
    color: var(--text-light);
}

.step span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
}

.progress-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #FFBF78 0%, #FFD699 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.status-info {
    margin-bottom: 1.5rem;
}

    .status-info .info-item {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 0.8rem;
        color: var(--text-light);
    }

        .status-info .info-item i {
            color: #FFBF78;
            font-size: 1rem;
        }

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

.logout-btn {
    background: #e9ecef;
    color: var(--text-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

    .logout-btn:hover {
        background: #dee2e6;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

.no-data-card {
    text-align: center;
    padding: 3rem;
}

.no-data-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff4e5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

    .no-data-icon i {
        color: #cc7a00;
        font-size: 2rem;
    }

.no-data-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.no-data-card p {
    color: var(--text-light);
}

.edit-loading {
    text-align: center;
    padding: 3rem;
}

.loading-spinner {
    margin-bottom: 1rem;
}

    .loading-spinner i {
        font-size: 2rem;
        color: #FFBF78;
    }

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

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

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }

    .tab-navigation {
        flex-direction: column;
    }

    .pending-hero {
        padding: 2rem;
    }

    .pending-content {
        padding: 0.75rem;
    }
}

/* Dashboard (Home Index) Styles */
.dashboard-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #FFBF78 0%, #F1F0E8 100%);
    padding: 2rem 0;
}

.success-alert,
.info-alert {
    position: fixed;
    top: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1000;
    transition: opacity 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.success-alert {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: var(--white);
}

.info-alert {
    background: linear-gradient(135deg, #17a2b8 0%, #6f42c1 100%);
    color: var(--white);
}

    .success-alert i,
    .info-alert i {
        font-size: 1.2rem;
    }

.dashboard-hero {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-welcome {
    text-align: left;
}

.welcome-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFBF78 0%, #FFD699 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(255,191,120,0.3);
    animation: float 3s ease-in-out infinite;
}

    .welcome-icon i {
        font-size: 2.5rem;
        color: var(--white);
    }

.hero-welcome h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.hero-welcome p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.company-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FFBF78 0%, #FFD699 100%);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255,191,120,0.3);
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 15px;
    border-left: 4px solid #FFBF78;
    transition: all 0.3s ease;
}

    .stat-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFBF78 0%, #FFD699 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .stat-icon i {
        color: var(--white);
        font-size: 1.5rem;
    }

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,191,120,0.1) 0%, rgba(255,214,153,0.1) 100%);
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.element-4 {
    width: 40px;
    height: 40px;
    top: 30%;
    right: 40%;
    animation-delay: 1s;
}

.dashboard-content {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 2rem;
}

.dashboard-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #f1f3f4;
    padding-bottom: 1rem;
}

.nav-tab {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .nav-tab:hover {
        background: #f8f9fa;
        color: var(--text-dark);
    }

    .nav-tab.active {
        background: linear-gradient(135deg, #FFBF78 0%, #FFD699 100%);
        color: var(--white);
        box-shadow: 0 8px 25px rgba(255,191,120,0.3);
    }

.tab-pane {
    display: none;
}

    .tab-pane.active {
        display: block;
        animation: fadeIn 0.3s ease;
    }

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

.company-card,
.quick-actions-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    border-left: 4px solid #FFBF78;
}

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

.header-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFBF78 0%, #FFD699 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .header-icon i {
        color: var(--white);
        font-size: 1.5rem;
    }

.card-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
}

    .status-badge.active {
        background: #e6f4ea;
        color: #1e7e34;
        border: 1px solid #c9e8d3;
    }

.company-info {
    margin-bottom: 1.5rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e9ecef;
}

    .info-row:last-child {
        border-bottom: none;
    }

    .info-row label {
        font-weight: 600;
        color: var(--text-dark);
        font-size: 0.9rem;
    }

    .info-row span {
        color: var(--text-light);
        font-size: 1rem;
    }

.document-section label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.document-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.document-name {
    color: var(--text-light);
    font-size: 0.9rem;
}

.document-buttons {
    display: flex;
    gap: 0.5rem;
}

.doc-btn {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
}

    .doc-btn.view {
        background: linear-gradient(135deg, #FFBF78 0%, #FFD699 100%);
        color: var(--white);
    }

    .doc-btn.download {
        background: #e9ecef;
        color: var(--text-dark);
    }

    .doc-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

.no-document {
    color: var(--text-light);
    font-style: italic;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.action-btn {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    text-align: left;
}

    .action-btn.primary {
        background: linear-gradient(135deg, #FFBF78 0%, #FFD699 100%);
        color: var(--white);
    }

    .action-btn.secondary {
        background: #e9ecef;
        color: var(--text-dark);
    }

    .action-btn.warning {
        background: #fff4e5;
        color: #cc7a00;
        border: 1px solid #ffe0b3;
    }

    .action-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

.empty-state {
    text-align: center;
    padding: 3rem;
}

.empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff4e5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

    .empty-icon i {
        color: #cc7a00;
        font-size: 2rem;
    }

.empty-state h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Action Buttons for Empty State */
.empty-state .action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    max-width: 300px;
    margin: 0;
}

    .empty-state .action-buttons .btn {
        width: 100%;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .empty-state .action-buttons .btn-primary {
        background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
        color: white;
        border: none;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }

        .empty-state .action-buttons .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        }

    .empty-state .action-buttons .btn-secondary {
        background: #f8fafc;
        color: #374151;
        border: 1px solid #e5e7eb;
    }

        .empty-state .action-buttons .btn-secondary:hover {
            background: #f1f5f9;
            border-color: #d1d5db;
            transform: translateY(-2px);
        }

    .empty-state .action-buttons .btn-outline {
        background: transparent;
        color: #6b7280;
        border: 1px solid #d1d5db;
    }

        .empty-state .action-buttons .btn-outline:hover {
            background: #f8fafc;
            color: #374151;
            border-color: #9ca3af;
            transform: translateY(-2px);
        }

.cta-btn {
    background: linear-gradient(135deg, #FFBF78 0%, #FFD699 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255,191,120,0.3);
}

    .cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(255,191,120,0.4);
    }

.onboarding-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    border-left: 4px solid #FFBF78;
}

.onboarding-header {
    text-align: center;
    margin-bottom: 2rem;
}

    .onboarding-header.rejected {
        margin-bottom: 1.5rem;
    }

    .onboarding-header .header-icon {
        margin: 0 auto 1rem;
    }

    .onboarding-header h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
    }

    .onboarding-header p {
        color: var(--text-light);
        font-size: 1rem;
    }

.onboarding-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    border-left: 4px solid #FFBF78;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFBF78 0%, #FFD699 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

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

.onboarding-btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

    .onboarding-btn.primary {
        background: linear-gradient(135deg, #FFBF78 0%, #FFD699 100%);
        color: var(--white);
        box-shadow: 0 8px 25px rgba(255,191,120,0.3);
    }

    .onboarding-btn.warning {
        background: linear-gradient(135deg, #ffc107 0%, #ffca2c 100%);
        color: var(--white);
        box-shadow: 0 8px 25px rgba(255,193,7,0.3);
    }

    .onboarding-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(0,0,0,0.2);
    }

.edit-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    border-left: 4px solid #FFBF78;
}

.edit-header {
    text-align: center;
    margin-bottom: 2rem;
}

    .edit-header .header-icon {
        margin: 0 auto 1rem;
    }

    .edit-header h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
    }

    .edit-header p {
        color: var(--text-light);
        font-size: 1rem;
    }

.edit-loading {
    text-align: center;
    padding: 3rem;
}

.loading-spinner {
    margin-bottom: 1rem;
}

    .loading-spinner i {
        font-size: 2rem;
        color: #FFBF78;
    }

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

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

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .dashboard-nav {
        flex-direction: column;
    }

    .dashboard-hero {
        padding: 2rem;
    }

    .dashboard-content {
        padding: 0.75rem;
    }

    .hero-stats {
        flex-direction: row;
    }

    .stat-card {
        flex: 1;
    }
}

/* Forgot Password Pages Styles - Moved to individual view files */

/* Password Strength Indicator */
.password-strength {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.strength-bar {
    width: 100px;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
}

.strength-fill {
    height: 100%;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.strength-text {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .forgot-password-container,
    .reset-password-container {
        padding: 1rem;
    }

    .forgot-password-card,
    .reset-password-card {
        padding: 2rem;
    }

    .forgot-header h1,
    .reset-header h1 {
        font-size: 1.5rem;
    }

    .forgot-icon,
    .reset-icon {
        width: 60px;
        height: 60px;
    }

        .forgot-icon i,
        .reset-icon i {
            font-size: 2rem;
        }
}

/* Set Password Page Styles - Moved to individual view file */

/* Modern Admin Dashboard Styles */
.admin-dashboard {
    min-height: 100vh;
    background: #f8fafc;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}



/* Top Navigation Bar */
.admin-navbar {
    background: var(--white);
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #22c55e 0%, #FFA812 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.nav-brand h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.notification-badge {
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

    .notification-badge:hover {
        background: #f7fafc;
    }

    .notification-badge i {
        font-size: 1.2rem;
        color: #64748b;
    }

.badge-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #FFA812;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    min-width: 20px;
    text-align: center;
}

.admin-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.admin-profile {
    position: relative;
    cursor: pointer;
}

    .admin-profile:hover {
        background: #f7fafc;
    }

.profile-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #8B5CF6 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
}

.profile-name {
    font-weight: 600;
    color: #1a202c;
    font-size: 0.9rem;
}

.profile-dropdown-icon {
    color: #64748b;
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.admin-profile.active .profile-dropdown-icon {
    transform: rotate(180deg);
}

/* Profile Dropdown */
.profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
    min-width: 280px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    margin-top: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.dropdown-header {
    padding: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
}

.dropdown-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #8B5CF6 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.dropdown-user-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 0.25rem 0;
}

.dropdown-user-info p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

.dropdown-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 0.5rem 0;
}

.dropdown-menu {
    padding: 0.5rem 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

    .dropdown-item:hover {
        background: #f8fafc;
        color: #1a202c;
    }

    .dropdown-item i {
        width: 16px;
        color: #64748b;
    }

    .dropdown-item.logout-item {
        color: #dc2626;
    }

        .dropdown-item.logout-item:hover {
            background: #fef2f2;
            color: #dc2626;
        }

        .dropdown-item.logout-item i {
            color: #dc2626;
        }

/* Main Dashboard Layout */
.dashboard-main {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 2rem;
    margin-top: 2rem;
}

/* Sidebar Navigation */
.dashboard-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.sidebar-nav {
    background: var(--white);
    border-radius: 16px;
    padding: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 200px);
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
    position: relative;
}

    .nav-item:hover {
        background: #f8fafc;
        color: #1a202c;
        transform: translateX(4px);
    }

    .nav-item.active {
        background: linear-gradient(135deg, #8B5CF6 0%, #764ba2 100%);
        color: var(--white);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }

    .nav-item i {
        font-size: 1.1rem;
        width: 20px;
        text-align: center;
    }

.item-badge {
    background: #ef4444;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    margin-left: auto;
}

.nav-item.active .item-badge {
    background: rgba(255, 255, 255, 0.2);
}

/* Main Content Area */
.dashboard-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Page Header */
.page-header {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
}

.header-title h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
    flex-shrink: 0;
}

.header-title p {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
    margin-top: 0.5rem;
}

.header-actions {
    display: flex ;
    align-items: center ;
    gap: 1rem;
    justify-content: flex-end ;
    flex-shrink: 0;
}

.search-box {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1rem;
    z-index: 2;
    pointer-events: none;
}

.search-input {
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
    width: 250px;
    transition: all 0.2s ease;
    background: white;
}

 .search-input:focus {
        outline: none;
        border-color: #8B5CF6;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
 }

/* Welcome Message */
.welcome-message {
    background: linear-gradient(135deg, #8B5CF6 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.welcome-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.welcome-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Statistics Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: var(--white);
    border-radius: 16px;
    padding: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
}

    .stat-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

    .stat-icon.pending {
        background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    }

    .stat-icon.total {
        background: linear-gradient(135deg, #8B5CF6 0%, #764ba2 100%);
    }

    .stat-icon.processed {
        background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    }

    .stat-icon.time {
        background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    }

.stat-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.25rem 0;
}

.stat-content p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

/* Content Card */
.content-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

/* Table Header */
.table-header {
    padding: 2rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.table-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.5rem 0;
}

.table-title .subtitle {
    color: #64748b;
    font-size: 0.9rem;
}

.table-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-dropdown {
    position: relative;
}

.filter-select {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
    background: var(--white);
    cursor: pointer;
    min-width: 150px;
}

    .filter-select:focus {
        outline: none;
        border-color: #8B5CF6;
    }

/* Data Table */
.table-container {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

    .data-table thead {
        background: #f8fafc;
    }

    .data-table th {
        padding: 1.5rem 1rem;
        text-align: left;
        font-weight: 600;
        color: #374151;
        font-size: 0.9rem;
        border-bottom: 1px solid #e2e8f0;
    }

.th-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.data-table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: top;
}

.data-table tbody tr {
    transition: all 0.2s ease;
}

    .data-table tbody tr:hover {
        background: #f8fafc;
    }

/* Table Row Content */
.admin-info,
.company-info,
.date-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-avatar,
.company-icon,
.date-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--white);
}

.admin-avatar {
    background: linear-gradient(135deg, #8B5CF6 0%, #764ba2 100%);
}

.company-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.date-icon {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.admin-details h4,
.company-details h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 0.25rem 0;
}

.admin-details p,
.company-details p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

.date-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.date {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a202c;
}

.time {
    font-size: 0.8rem;
    color: #64748b;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    width: fit-content;
}

    .status-badge.pending {
        background: #fef3c7;
        color: #92400e;
    }

    .status-badge.approved {
        background: #d1fae5;
        color: #065f46;
    }

    .status-badge.rejected {
        background: #fee2e2;
        color: #991b1b;
    }

    .status-badge i {
        font-size: 0.8rem;
    }

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.3rem;
    border: none;
    border-radius: 6px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    }

.btn-secondary {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
}

    .btn-secondary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(107, 114, 128, 0.4);
    }

.btn-outline {
    background: white;
    color: #374151;
    border-color: #d1d5db;
}

    .btn-outline:hover {
        background: #f9fafb;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

.btn-success {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: white;
}

    .btn-success:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    }

.btn-danger {
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
    color: white;
}

    .btn-danger:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    }

.btn-sm {
    padding: 0.1rem 0.1rem;
    font-size: 0.1rem;
}

/* Pagination */
.table-pagination {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.pagination-info {
    color: #64748b;
    font-size: 0.9rem;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-numbers {
    display: flex;
    gap: 0.25rem;
}

.page-number {
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .page-number:hover {
        background: #f1f5f9;
        color: #1a202c;
    }

    .page-number.active {
        background: #8B5CF6;
        color: var(--white);
    }

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.empty-state h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.5rem 0;
}

.empty-state p {
    color: #64748b;
    font-size: 1rem;
    margin: 0 0 2rem 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.empty-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Quick Actions Panel */
.quick-actions-panel {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

    .quick-actions-panel h3 {
        font-size: 1.25rem;
        font-weight: 700;
        color: #1a202c;
        margin: 0 0 1.5rem 0;
    }

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: #374151;
}

    .action-card:hover {
        background: #f8fafc;
        border-color: #8B5CF6;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
    }

.action-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #8B5CF6 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.action-card span {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: var(--white);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
    max-width: 400px;
}

    .toast-notification.show {
        transform: translateX(0);
    }

    .toast-notification.success {
        border-left: 4px solid #10b981;
    }

.toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.toast-notification.success .toast-icon {
    background: #d1fae5;
    color: #10b981;
}

.toast-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 0.25rem 0;
}

.toast-content p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.toast-close {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    margin-left: auto;
}

    .toast-close:hover {
        background: #f1f5f9;
        color: #374151;
    }

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

    .loading-overlay.show {
        display: flex;
    }

.loading-spinner {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid #8B5CF6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-spinner p {
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .dashboard-main {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .dashboard-main {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    .dashboard-sidebar {
        width: 100%;
        order: 2;
    }

    .sidebar-nav {
        display: flex;
        overflow-x: auto;
        padding: 1rem;
        gap: 0.5rem;
    }

    .nav-item {
        flex-shrink: 0;
        margin-bottom: 0;
        white-space: nowrap;
    }

    .header-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .header-actions {
        justify-content: flex-end;
    }

    .search-input {
        width: 200px;
    }

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

    .table-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .table-controls {
        justify-content: stretch;
    }

    .filter-select {
        flex: 1;
    }

    .action-buttons {
        flex-direction: row;
        gap: 0.5rem;
        flex-wrap: nowrap;
        justify-content: center;
    }

        /* Action buttons should remain horizontal on mobile */
        .action-buttons .btn {
            width: auto;
            min-width: auto;
            justify-content: center;
        }

    .pagination-controls {
        flex-direction: column;
        gap: 1rem;
    }

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

    .toast-notification {
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}

/* Additional Utility Classes */
.text-success {
    color: #10b981;
    font-weight: 600;
}

.text-danger {
    color: #ef4444;
    font-weight: 600;
}

.text-info {
    color: #3b82f6;
    font-weight: 600;
}

/* Enhanced Hover Effects */
.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.action-card:hover .action-icon {
    transform: scale(1.1);
}

/* Smooth Transitions */
.admin-dashboard * {
    transition: all 0.2s ease;
}

/* Enhanced Focus States */
.search-input:focus,
.filter-select:focus {
    outline: none;
    border-color: #8B5CF6;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Loading Animation Enhancement */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.loading .stat-card {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Enhanced Table Styling */
.data-table tbody tr:hover {
    background: #f8fafc;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Enhanced Button States */
.btn:active {
    transform: translateY(0);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Enhanced Navigation */
.nav-item:hover {
    background: #f8fafc;
    color: #1a202c;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Enhanced Search Box */
.search-box:hover .search-input {
    border-color: #9ca3af;
}

.search-box:focus-within .search-input {
    border-color: #8B5CF6;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-box:focus-within i {
    color: #8B5CF6;
}

/* Enhanced Status Badges */
.status-badge {
    position: relative;
    overflow: hidden;
}

    .status-badge::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .status-badge:hover::before {
        left: 100%;
    }

/* Enhanced Action Buttons */
.action-buttons .btn {
    position: relative;
    overflow: hidden;
}

    .action-buttons .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .action-buttons .btn:hover::before {
        left: 100%;
    }

/* Logout Navigation Item */
.nav-item.logout-nav-item {
    margin-top: auto;
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
}

    .nav-item.logout-nav-item:hover {
        background: #fef2f2;
        color: #dc2626;
    }

        .nav-item.logout-nav-item:hover i {
            color: #dc2626;
        }

@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.5rem;
    }

    .dashboard-main {
        padding: 0 0.5rem;
    }

    .page-header,
    .content-card,
    .quick-actions-panel {
        padding: 1rem;
    }

    .table-header {
        padding: 1rem;
    }

    .data-table th,
    .data-table td {
        padding: 1rem 0.5rem;
    }

    .admin-info,
    .company-info,
    .date-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

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


/* Button Styles for Edit Form */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.3rem;
    border: none;
    border-radius: 8px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
    color: white;
}

    .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    }

.btn-success {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: white;
}

    .btn-success:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    }

.btn-outline {
    background: white;
    color: #374151;
    border: 2px solid #e5e7eb;
}

    .btn-outline:hover {
        background: #f8fafc;
        border-color: #d1d5db;
    }

.btn-sm {
    padding: 0.4rem 0.65rem;
    font-size: 0.8rem;
}


/* Step Progress Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
}

.step-number {
    transition: all 0.3s ease;
}

/* Form Validation Styles */
.form-control.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.validation-error {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Responsive Design for Edit Form */
@media (max-width: 768px) {
    .step-indicator {
        gap: 0.25rem;
    }

    .step-number {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }

    .step-indicator span {
        font-size: 0.75rem !important;
    }
}

/* Home Index Page - Admin Dashboard Style */
.admin-dashboard {
    min-height: 100vh;
    background: #f8fafc;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Top Navigation Bar */
.top-nav {
    background: linear-gradient(135deg, #8B5CF6 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
}

    .nav-brand i {
        font-size: 1.5rem;
    }

.nav-user .user-profile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

    .nav-user .user-profile i {
        font-size: 1.25rem;
    }

/* Main Content Area */
.main-content {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Welcome Section */
.welcome-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.welcome-content h1 {
    color: #1f2937;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.welcome-content p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.welcome-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Navigation Tabs */
.nav-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: white;
    padding: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.nav-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    color: #6b7280;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

    .nav-tab:hover {
        background: #f3f4f6;
        color: #374151;
    }

    .nav-tab.active {
        background: linear-gradient(135deg, #8B5CF6 0%, #764ba2 100%);
        color: white;
    }

    .nav-tab i {
        font-size: 1rem;
    }

/* Tab Content */
.tab-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.tab-pane {
    display: none;
}

    .tab-pane.active {
        display: block;
    }

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}

/* Content Cards */
.content-card {
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.card-header {
    background: #f9fafb;
    padding: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .card-header h3 {
        color: #1f2937;
        font-size: 1.25rem;
        font-weight: 600;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

        .card-header h3 i {
            color: #8B5CF6;
        }

    .card-header p {
        color: #6b7280;
        margin: 0.5rem 0 0 0;
        font-size: 0.95rem;
    }

    .card-header.rejected h3 i {
        color: #ef4444;
    }

.card-body {
    padding: 0.75rem;
}

/* Status Badge */
.status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

    .status-badge.active {
        background: #dcfce7;
        color: #166534;
    }

        .status-badge.active i {
            color: #16a34a;
        }

/* Info Table */
.info-table table {
    width: 100%;
    border-collapse: collapse;
}

.info-table td {
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}

    .info-table td:last-child {
        border-bottom: none;
    }

.info-label {
    color: #374151;
    font-weight: 600;
    width: 40%;
    vertical-align: top;
}

.info-value {
    color: #1f2937;
    font-weight: 500;
}

/* Document Info */
.document-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.document-name {
    color: #059669;
    font-weight: 500;
    font-size: 0.9rem;
}

.document-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.no-document {
    color: #dc2626;
    font-style: italic;
    font-size: 0.9rem;
}

/* Actions Grid */
.actions-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

    .action-btn.primary {
        background: linear-gradient(135deg, #8B5CF6 0%, #764ba2 100%);
        color: white;
    }

        .action-btn.primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }

    .action-btn.secondary {
        background: #f3f4f6;
        color: #374151;
        border-color: #d1d5db;
    }

        .action-btn.secondary:hover {
            background: #e5e7eb;
        }

    .action-btn.warning {
        background: #E9D5FF;
        color: #4C1D95;
        border-color: #8B5CF6;
    }

        .action-btn.warning:hover {
            background: #DDD6FE;
        }

/* Onboarding Steps */
.onboarding-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8B5CF6 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1f2937;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.step-content p {
    color: #6b7280;
    margin: 0;
    font-size: 0.9rem;
}

.onboarding-actions {
    margin-top: 2rem;
    text-align: center;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-icon {
    font-size: 4rem;
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.empty-state h3 {
    color: #374151;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.empty-state p {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Loading States */
.edit-loading {
    text-align: center;
    padding: 3rem 2rem;
    color: #6b7280;
}

.loading-spinner {
    font-size: 2rem;
    color: #8B5CF6;
    margin-bottom: 1rem;
}

/* Alerts */
.success-alert, .info-alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    animation: slideIn 0.3s ease;
}

.success-alert {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.info-alert {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 1rem;
    }

    .welcome-section {
        padding: 0.75rem;
    }

    .welcome-content h1 {
        font-size: 1.5rem;
    }

    .nav-tabs {
        flex-direction: row;
    }

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

    .content-grid {
        padding: 1rem;
    }

    .card-header {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .card-body {
        padding: 1rem;
    }

    .info-table td {
        display: block;
        width: 100%;
        padding: 0.75rem 0;
    }

    .info-label {
        font-weight: 600;
        color: #6b7280;
        font-size: 0.875rem;
        margin-bottom: 0.25rem;
    }
}

/* Override for Quick Actions Panel specifically */
.quick-actions-panel .actions-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
    gap: 1rem;
}

/* Human-Centered Design Animations for Quick Actions */
@keyframes welcomeFloat {
    0% {
        transform: translateY(0px);
    }

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

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

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(30px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }

    100% {
        background-position: calc(200px + 100%) 0;
    }
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    14% {
        transform: scale(1.1);
    }

    28% {
        transform: scale(1);
    }

    42% {
        transform: scale(1.1);
    }

    70% {
        transform: scale(1);
    }
}

/* Quick Actions Welcome Animation */
.quick-actions-welcome {
    animation: welcomeFloat 3s ease-in-out infinite;
    position: relative;
}

    .quick-actions-welcome::before {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        background: linear-gradient(45deg, #8B5CF6, #764ba2, #f093fb, #f5576c);
        background-size: 400% 400%;
        border-radius: 16px;
        z-index: -1;
        animation: shimmer 3s ease infinite;
        opacity: 0.1;
    }

/* Quick Actions Card Enhancements */
.content-card.quick-actions-enhanced {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .content-card.quick-actions-enhanced:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    }

    .content-card.quick-actions-enhanced::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .content-card.quick-actions-enhanced:hover::after {
        left: 100%;
    }

/* Enhanced Action Buttons */
.action-btn-enhanced {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

    .action-btn-enhanced::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s;
    }

    .action-btn-enhanced:hover::before {
        left: 100%;
    }

    .action-btn-enhanced:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

/* Welcome Message Animation */
.welcome-message-enhanced {
    background: linear-gradient(135deg, #8B5CF6 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    animation: slideInRight 0.8s ease-out;
}

    .welcome-message-enhanced h4 {
        margin: 0 0 0.5rem 0;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .welcome-message-enhanced p {
        margin: 0;
        opacity: 0.9;
        font-size: 0.9rem;
    }

/* Interactive Hover Effects */
.action-btn-enhanced.secondary:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-color: #8B5CF6;
    color: #8B5CF6;
}

.action-btn-enhanced.primary:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: translateY(-3px) scale(1.05);
    animation: pulseGlow 2s infinite;
}

.action-btn-enhanced.warning:hover {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: white;
    border-color: #8B5CF6;
}

/* Loading State Animation */
.action-btn-loading {
    position: relative;
    pointer-events: none;
}

    .action-btn-loading::after {
        content: '';
        position: absolute;
        width: 16px;
        height: 16px;
        top: 50%;
        left: 50%;
        margin-left: -8px;
        margin-top: -8px;
        border: 2px solid transparent;
        border-top: 2px solid currentColor;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Micro-interactions */
.action-btn-enhanced:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s;
}

/* Accessibility Enhancements */
.action-btn-enhanced:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

/* Responsive Animations */
@media (prefers-reduced-motion: reduce) {
    .quick-actions-welcome,
    .content-card.quick-actions-enhanced,
    .action-btn-enhanced,
    .welcome-message-enhanced {
        animation: none;
        transition: none;
    }
}

@media (max-width: 768px) {
    .welcome-message-enhanced::before {
        display: none;
    }

    .action-btn-enhanced:hover {
        transform: none;
    }
}

/* Company Steps - Wide Layout with Left Sidebar */
.company-step-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem 0;
    overflow: visible;
    position: relative;
}

.company-step-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

    .company-step-header h1 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1a202c;
        margin-bottom: 0.5rem;
        background: linear-gradient(135deg, #8B5CF6 0%, #764ba2 100%);
        -webkit-text-fill-color: transparent;
        color: #8B5CF6;
    }

    .company-step-header p {
        font-size: 1.1rem;
        color: #64748b;
        margin-bottom: 0;
    }

/* Step Progress */
.step-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

    .step-indicator:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 25px;
        right: -1rem;
        width: 2rem;
        height: 2px;
        background: #e5e7eb;
        z-index: 1;
    }

    .step-indicator.completed:not(:last-child)::after {
        background: linear-gradient(135deg, #8B5CF6 0%, #764ba2 100%);
    }

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-indicator.active .step-number {
    background: linear-gradient(135deg, #8B5CF6 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    animation: pulse 2s infinite;
}

.step-indicator:not(.active) .step-number {
    background: #e5e7eb;
    color: #9ca3af;
}

.step-indicator span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
}

.step-indicator.active span {
    color: #8B5CF6;
}

/* Main Content Layout */
.company-step-content {
    display: flex;
    padding: 0 2rem 2rem 2rem;
    gap: 2rem;
}

/* Left Sidebar - Copying working styles from admin dashboard */
.company-sidebar {
    width: 280px;
    background: white;
    border-radius: 12px;
    padding: 0.75rem;
    margin-right: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.sidebar-section {
    margin-bottom: 1.5rem;
}

    .sidebar-section h3 {
        font-size: 1rem;
        font-weight: 600;
        color: #374151;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

        .sidebar-section h3 i {
            color: #8B5CF6;
        }

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #f8fafc;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
}

    .sidebar-item:hover {
        background: #f1f5f9;
        transform: translateX(3px);
    }

    .sidebar-item i {
        color: #8B5CF6;
        font-size: 1rem;
    }

    .sidebar-item span {
        color: #374151 !important;
        font-size: 0.85rem;
        font-weight: 500;
    }




/* Navigation Buttons */
.sidebar-nav-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    width: 100%;
    justify-content: center;
}

.sidebar-nav-btn-primary {
    background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
    color: white !important;
    border: none;
}

    .sidebar-nav-btn-primary:hover {
        background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
        color: white !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }

/* Force white color for all text elements inside primary button - HIGH SPECIFICITY */
.sidebar-item .sidebar-nav-btn-primary,
.sidebar-item .sidebar-nav-btn-primary span,
.sidebar-item .sidebar-nav-btn-primary i,
.sidebar-item .sidebar-nav-btn-primary * {
    color: white !important;
}

/* Additional specificity to override sidebar-item span color */
.company-sidebar .sidebar-item .sidebar-nav-btn-primary,
.company-sidebar .sidebar-item .sidebar-nav-btn-primary span,
.company-sidebar .sidebar-item .sidebar-nav-btn-primary i {
    color: white !important;
}

/* Ensure text decoration is removed */
.sidebar-nav-btn-primary,
.sidebar-nav-btn-primary:hover,
.sidebar-nav-btn-primary:focus,
.sidebar-nav-btn-primary:active {
    color: white !important;
    text-decoration: none;
}

.sidebar-nav-btn-secondary {
    background: #f8fafc;
    color: #374151;
    border: 1px solid #e5e7eb;
}

    .sidebar-nav-btn-secondary:hover {
        background: #f1f5f9;
        color: #374151;
        border-color: #d1d5db;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

.navigation-section {
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Form Card - Wide */
.company-form-card {
    flex: 1;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 200px);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B5CF6 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

    .form-icon i {
        font-size: 2rem;
        color: white;
    }

.form-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.form-header p {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
}

/* Form Groups */
.form-group {
    margin-bottom: 2rem;
}



    .form-group label {
        display: block;
        font-weight: 600;
        color: #374151;
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
    }

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #8B5CF6;
    z-index: 2;
}

.form-control {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #1f2937;
}

    .form-control:focus {
        outline: none;
        border-color: #8B5CF6;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        transform: translateY(-2px);
    }

    .form-control::placeholder {
        color: #9ca3af;
    }

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

    .form-actions:has(.company-btn:only-child) {
        justify-content: center;
    }

.company-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 160px;
    justify-content: center;
}

.company-btn-primary {
    background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

    .company-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    }

.company-btn-secondary {
    background: white;
    color: #374151;
    border: 2px solid #e5e7eb;
}

    .company-btn-secondary:hover {
        background: #f8fafc;
        border-color: #d1d5db;
        transform: translateY(-2px);
    }

/* Validation */

.validation-error {
    color: #dc2626;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .validation-error i {
        color: #ef4444;
    }

/* Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .company-step-container {
        padding: 1rem 0;
    }

    .company-form-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .step-progress {
        gap: 1rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .company-btn {
        width: 100%;
    }
}

/* Company Review Card */
.company-review-card {
    flex: 1;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 200px);
}

/* RejectedUser Page Styling */
.status-badge.rejected {
    background: #fef2f2;
    color: #dc2626;
}

    .status-badge.rejected i {
        color: #ef4444;
    }

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    padding: 1rem 0;
    max-width: 300px;
    margin: 0;
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.70rem;
    padding: 1rem 1rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    min-width: 135px;
    justify-content: center;
    font-size: 0.8rem;
}

.btn-primary {
    background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    }

.btn-secondary {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
}

    .btn-secondary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(107, 114, 128, 0.4);
    }

.btn-outline {
    background: white;
    color: #374151;
    border-color: #d1d5db;
}

    .btn-outline:hover {
        background: #f9fafb;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

.get-started-btn {
    font-size: 1rem;
    padding: 0.875rem 2rem;
    background: #8B5CF6 !important;
    border: none;
}

    .get-started-btn:hover {
        background: #7C3AED !important;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    }

.status-badge.active {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.status-section {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

    .status-section .status-badge {
        transition: all 0.3s ease;
    }

        .status-section .status-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .status-section .status-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

.company-preview-section {
    animation: fadeInUp 0.6s ease-out;
}

    .company-preview-section .content-card {
        transition: all 0.3s ease;
    }

        .company-preview-section .content-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

    .company-preview-section .table-wrapper {
        transition: all 0.3s ease;
    }

        .company-preview-section .table-wrapper:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.admin-dashboard .step-content {
    display: none;
}

    .admin-dashboard .step-content.active {
        display: block;
    }

    .admin-dashboard .step-content h4 {
        color: #374151;
        margin-bottom: 1rem;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .admin-dashboard .step-content .form-group {
        margin-bottom: 1.5rem;
    }

    .admin-dashboard .step-content .form-control {
        width: 100%;
        padding: 0.75rem 1rem 0.75rem 2.5rem;
        border: 2px solid #e5e7eb;
        border-radius: 8px;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        background: white;
    }

        .admin-dashboard .step-content .form-control:focus {
            outline: none;
            border-color: #8B5CF6;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

    .admin-dashboard .step-content .validation-error {
        display: none;
        color: #ef4444;
        font-size: 0.85rem;
        margin-top: 0.5rem;
        padding: 0.5rem;
        background: #fef2f2;
        border: 1px solid #fecaca;
        border-radius: 6px;
    }

    .admin-dashboard .step-content .form-actions {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        margin-top: 2rem;
        flex-wrap: wrap;
    }

    .admin-dashboard .step-content .btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1.1rem;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
        justify-content: center;
    }

    .admin-dashboard .step-content .btn-primary {
        background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
        color: white;
        box-shadow: 0 2px 4px rgba(139, 92, 246, 0.2);
    }

        .admin-dashboard .step-content .btn-primary:hover {
            background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
        }

    .admin-dashboard .step-content .btn-outline {
        background: transparent;
        color: #8B5CF6;
        border: 1px solid #8B5CF6;
    }

        .admin-dashboard .step-content .btn-outline:hover {
            background: #8B5CF6;
            color: white;
            transform: translateY(-2px);
        }

    .admin-dashboard .step-content .btn-success {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        color: white;
        box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
    }

        .admin-dashboard .step-content .btn-success:hover {
            background: linear-gradient(135deg, #059669 0%, #047857 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
        }

    .admin-dashboard .step-content .btn-secondary {
        background: #f3f4f6;
        color: #374151;
        border: 1px solid #e5e7eb;
    }

        .admin-dashboard .step-content .btn-secondary:hover {
            background: #e5e7eb;
            border-color: #d1d5db;
            transform: translateY(-1px);
        }



.admin-dashboard .file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border: 1px solid #0ea5e9;
    border-radius: 6px;
    gap: 1rem;
}

    .admin-dashboard .file-item i {
        color: #0ea5e9;
        font-size: 1.1rem;
    }

    .admin-dashboard .file-item span {
        color: #0c4a6e;
        font-weight: 500;
        font-size: 0.9rem;
        flex: 1;
    }

.admin-dashboard .view-btn {
    background: #8B5CF6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

    .admin-dashboard .view-btn:hover {
        background: #7C3AED;
        transform: translateY(-1px);
    }

.admin-dashboard .review-section {
    background: #f8fafc;
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
}

.admin-dashboard .review-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

    .admin-dashboard .review-item:last-child {
        border-bottom: none;
    }

    .admin-dashboard .review-item label {
        font-weight: 600;
        color: #374151;
        font-size: 0.9rem;
    }

    .admin-dashboard .review-item span {
        color: #6b7280;
        font-size: 0.9rem;
    }

.admin-dashboard .required {
    color: #ef4444;
    font-weight: 600;
}

.admin-dashboard .validation-error {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
}

    .admin-dashboard .validation-error i {
        color: #ef4444;
    }

/* Responsive adjustments for admin dashboard embedded company steps */
@media (max-width: 1200px) {
    .admin-dashboard .company-step-content {
        flex-direction: column;
    }

    .admin-dashboard .company-sidebar {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .admin-dashboard .company-step-container {
        margin-top: 1rem;
    }

    .admin-dashboard .company-step-header {
        margin-bottom: 1.5rem;
    }

    .admin-dashboard .step-progress {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .admin-dashboard .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .admin-dashboard .company-form-card {
        padding: 0.75rem;
    }

    .admin-dashboard .form-actions {
        flex-direction: column;
    }

    .admin-dashboard .company-btn {
        width: 100%;
    }
}

/* Welcome Icon Animation in Quick Actions */
.welcome-icon-container {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
}

.welcome-icon {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    animation: wave 2s ease-in-out infinite;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(139, 92, 246, 0.2));
}

.waving-person {
    animation: wave 2s ease-in-out infinite;
    transform-origin: 70% 70%;
}

.welcome-title {
    color: #4c1d95;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 0 0.5rem 0;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.welcome-text {
    color: #4c1d95;
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    animation: fadeInUp 1s ease-out 0.4s both;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    50% { transform: rotate(25deg); }
    75% { transform: rotate(15deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Simple Quick Actions Buttons */
.quick-actions-grid {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.quick-actions-grid .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

    .quick-actions-grid .btn-primary {
        background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
        color: white;
    }

        .quick-actions-grid .btn-primary:hover {
            background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
            transform: translateY(-2px);
        }

.quick-actions-grid .btn-secondary {
    background: #6b7280;
    color: white;
}

.quick-actions-grid .btn-secondary:hover {
    background: #4b5563;
    transform: translateY(-2px);
}

/* ========================================
   COMPANY STEP PAGES - FIXED LAYOUT STYLES
   ======================================== */

/* Fixed Layout Override - Everything fits in viewport */
.company-step-container {
    min-height: 100vh !important;
    max-height: 100vh !important;
    overflow: hidden !important;
    padding: 0.5rem !important;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
}

.company-step-content {
    display: flex !important;
    height: calc(100vh - 120px) !important;
    gap: 1rem !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.company-sidebar {
    width: 250px !important;
    height: 100% !important;
    overflow-y: auto !important;
    background: white !important;
    border-radius: 8px !important;
    padding: 0.5rem !important;
    margin-right: 0 !important;
    flex-shrink: 0 !important;
}

.company-form-card {
    flex: 1 !important;
    height: 100% !important;
    overflow-y: auto !important;
    background: white !important;
    border-radius: 8px !important;
    padding: 1rem !important;
    margin: 0 !important;
}

.company-step-header {
    margin-bottom: 0.5rem !important;
    padding: 0.5rem !important;
}

.step-progress {
    margin-bottom: 0.5rem !important;
}

.step-indicator {
    padding: 0.3rem 0.5rem !important;
    font-size: 0.8rem !important;
}

.step-number {
    width: 25px !important;
    height: 25px !important;
    font-size: 0.7rem !important;
}

/* Compact form styling */
.form-group {
    margin-bottom: 0.8rem !important;
}

.form-group label {
    font-size: 0.85rem !important;
    margin-bottom: 0.3rem !important;
}

.input-group {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    margin-bottom: 0.2rem !important;
}

.input-icon {
    position: absolute !important;
    left: 0.75rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 2 !important;
    padding: 0 !important;
    font-size: 0.8rem !important;
    color: #8B5CF6 !important;
    pointer-events: none !important;
}

.form-control {
    padding: 0.5rem 0.75rem 0.5rem 2.5rem !important;
    font-size: 0.85rem !important;
    height: auto !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 6px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Special handling for select dropdowns */
select.form-control {
    padding-left: 2.5rem !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e") !important;
    background-position: right 0.5rem center !important;
    background-repeat: no-repeat !important;
    background-size: 1.5em 1.5em !important;
    padding-right: 2.5rem !important;
}

/* Special handling for inputs without icons */
input.form-control:not([type="checkbox"]) {
    padding-left: 2.5rem !important;
}

/* Checkbox styling */
input[type="checkbox"] {
    margin-right: 0.5rem !important;
    accent-color: #8B5CF6 !important;
}

.validation-error {
    font-size: 0.75rem !important;
    margin-top: 0.2rem !important;
}

/* Compact sidebar */
.sidebar-section {
    margin-bottom: 1rem !important;
    padding: 0.5rem !important;
}

.sidebar-section h3 {
    font-size: 0.9rem !important;
    margin-bottom: 0.5rem !important;
}

.sidebar-item {
    padding: 0.3rem 0 !important;
    font-size: 0.8rem !important;
}

.sidebar-item i {
    font-size: 0.8rem !important;
    margin-right: 0.5rem !important;
}

.download-btn {
    padding: 0.4rem 0.6rem !important;
    font-size: 0.8rem !important;
}

/* Compact form actions */
.form-actions {
    margin-top: 1rem !important;
    padding: 0.5rem 0 !important;
}

.company-btn {
    padding: 0.5rem 1rem !important;
    font-size: 0.85rem !important;
}

/* File upload sections - compact */
.file-upload-section {
    padding: 0.5rem !important;
    border: 2px dashed #e5e7eb !important;
    border-radius: 6px !important;
    background: #f8fafc !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.file-upload-info {
    text-align: center !important;
    padding: 0.5rem !important;
}

.file-upload-info i {
    font-size: 1.5rem !important;
    color: #6b7280 !important;
    margin-bottom: 0.5rem !important;
}

.file-upload-info span {
    display: block !important;
    font-size: 0.8rem !important;
    color: #374151 !important;
    margin-bottom: 0.25rem !important;
}

.file-upload-info small {
    font-size: 0.7rem !important;
    color: #6b7280 !important;
}

/* Previously uploaded files - compact */
.previously-uploaded-section {
    margin-top: 0.5rem !important;
    padding: 0.5rem !important;
    background: #f0f9ff !important;
    border: 1px solid #0ea5e9 !important;
    border-radius: 6px !important;
    min-height: auto !important;
    max-width: 300px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* PendingApproval Step2 - Force light blue styling for previously uploaded sections */
.company-step-container .previously-uploaded-section {
    margin-top: 0.5rem !important;
    padding: 0.5rem !important;
    background: #f0f9ff !important;
    border: 1px solid #0ea5e9 !important;
    border-radius: 6px !important;
    min-height: auto !important;
    max-width: 300px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.company-step-container .previously-uploaded-section h4 {
    font-size: 0.85rem !important;
    margin-bottom: 0.5rem !important;
    color: #0c4a6e !important;
}

.previously-uploaded-section h4 {
    font-size: 0.85rem !important;
    margin-bottom: 0.5rem !important;
    color: #0c4a6e !important;
}

.previously-uploaded-files {
    margin-top: 0.5rem !important;
}

/* Two-column form layout - Compact */
.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .company-step-content {
        flex-direction: column !important;
        height: calc(100vh - 100px) !important;
    }
    
    .company-sidebar {
        width: 100% !important;
        height: auto !important;
        max-height: 200px !important;
        margin-bottom: 0.5rem !important;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .form-column {
        gap: 0.5rem;
    }
}

/* Hide any scrollbars for cleaner look */
.company-sidebar::-webkit-scrollbar,
.company-form-card::-webkit-scrollbar {
    width: 4px;
}

.company-sidebar::-webkit-scrollbar-track,
.company-form-card::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.company-sidebar::-webkit-scrollbar-thumb,
.company-form-card::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 2px;
}

.company-sidebar::-webkit-scrollbar-thumb:hover,
.company-form-card::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Date picker modal - compact */
#datePickerModal {
    z-index: 9999 !important;
}

#datePickerModal > div {
    max-width: 350px !important;
    padding: 1rem !important;
}

#datePickerModal h3 {
    font-size: 1rem !important;
}

#datePickerModal label {
    font-size: 0.85rem !important;
}

#datePickerModal select {
    padding: 0.4rem !important;
    font-size: 0.85rem !important;
}

#datePickerModal button {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.8rem !important;
}

/* ========================================
   PROFESSIONAL DATE PICKER STYLES
   ======================================== */

.date-picker-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-out;
}

.date-picker-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    max-width: 420px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
}

/* Header */
.date-picker-header {
    background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.date-picker-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.date-picker-title i {
    font-size: 1.2rem;
}

.date-picker-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.date-picker-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Body */
.date-picker-body {
    padding: 1.5rem;
}

/* Navigation */
.date-picker-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.nav-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-btn:hover {
    background: #8B5CF6;
    color: white;
    border-color: #8B5CF6;
    transform: scale(1.05);
}

.month-year-display {
    font-weight: 600;
    font-size: 1.1rem;
    color: #1e293b;
    text-align: center;
    min-width: 140px;
}

/* Calendar */
.date-picker-calendar {
    margin-bottom: 1.5rem;
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.day-header {
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: #64748b;
    padding: 0.5rem 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    position: relative;
}

.calendar-day:hover {
    background: #f1f5f9;
    transform: scale(1.05);
}

.calendar-day.other-month {
    color: #cbd5e1;
}

.calendar-day.today {
    background: #dbeafe;
    color: #1d4ed8;
    font-weight: 600;
}

.calendar-day.selected {
    background: #8B5CF6;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.calendar-day.selected:hover {
    background: #7c3aed;
}

/* Quick Actions */
.date-picker-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.action-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #64748b;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.action-btn:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.action-btn.secondary:hover {
    background: #8B5CF6;
    color: white;
    border-color: #8B5CF6;
}

/* Footer */
.date-picker-footer {
    background: #f8fafc;
    padding: 1rem 1.5rem;
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    border-top: 1px solid #e2e8f0;
}

.footer-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

.footer-btn.cancel {
    background: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.footer-btn.cancel:hover {
    background: #e2e8f0;
    transform: translateY(-1px);
}

.footer-btn.confirm {
    background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.footer-btn.confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .date-picker-container {
        width: 95%;
        margin: 1rem;
    }
    
    .date-picker-header {
        padding: 1rem;
    }
    
    .date-picker-body {
        padding: 1rem;
    }
    
    .date-picker-footer {
        padding: 1rem;
    }
    
    .calendar-day {
        font-size: 0.8rem;
    }
}

