.filament-custom-section header {
    background-color: #00acac !important;
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
    color: white;
}

.filament-custom-section header h3 {
    color: white;
}

.filament-custom-section header p {
    color: rgb(243 244 246);
    /* gray-100 */
}

.fi-sidebar-nav {
    background-color: #fff;
}

.fi-sidebar-nav-groups {
    row-gap: 10px !important;
}

.fi-sidebar-item-active a {
    border: #00acac solid 1px !important;
}

/* --- Applicant View Page Styles --- */

.applicant-view-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0.5rem;
}

.applicant-header-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #f3f4f6;
}

.dark .applicant-header-card {
    background-color: #111827;
    border-color: #374151;
}

.applicant-avatar-wrapper {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 9999px;
    background-color: #f0f9ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark .applicant-avatar-wrapper {
    background-color: rgba(59, 130, 246, 0.1);
}

.applicant-avatar-icon {
    width: 40px;
    height: 40px;
    color: #2563eb;
}

.applicant-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .applicant-details-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.applicant-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.applicant-info-label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    color: #6b7280;
}

.dark .applicant-info-label {
    color: #9ca3af;
}

.applicant-info-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
}

.dark .applicant-info-value {
    color: #f9fafb;
}

.applicant-doc-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .applicant-doc-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.applicant-doc-preview {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    aspect-ratio: 16 / 9;
}

.dark .applicant-doc-preview {
    background-color: #1f2937;
    border-color: #374151;
}

.applicant-doc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.applicant-empty-doc {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 2px dashed #e5e7eb;
    border-radius: 0.5rem;
    min-height: 150px;
}

.dark .applicant-empty-doc {
    border-color: #374151;
}

.applicant-icon-sm {
    width: 20px;
    height: 20px;
    color: #9ca3af;
}