/* Custom Animations and Utilities */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

.nav-item.active {
    background-color: #f0f9ff;
    color: #0ea5e9;
    font-weight: 600;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Status Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-gray {
    background: #f3f4f6;
    color: #4b5563;
}

.badge-blue {
    background: #eff6ff;
    color: #3b82f6;
}

.badge-green {
    background: #f0fdf4;
    color: #22c55e;
}

.badge-red {
    background: #fef2f2;
    color: #ef4444;
}

.badge-orange {
    background: #fff7ed;
    color: #f97316;
}

@media print {

    aside,
    header,
    .screen-only {
        display: none !important;
    }

    body,
    main {
        height: auto !important;
        overflow: visible !important;
        display: block !important;
    }

    .page-section {
        display: none !important;
    }

    #page-reports {
        display: block !important;
    }

    #report-container {
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }
}