/* Custom Styles */
.nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid white;
}

.modal {
    transition: opacity 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #c7d2fe;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #818cf8;
}

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

.section-content {
    animation: fadeIn 0.3s ease-out;
}

/* Status Badges */
.badge-pending {
    background-color: #fef3c7;
    color: #92400e;
    padding: 2px 8px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-paid {
    background-color: #d1fae5;
    color: #065f46;
    padding: 2px 8px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Insights Animation */
#insights-container > div {
    animation: fadeIn 0.4s ease-out forwards;
}
