/* MonthlyTrends Table Toggle Styling */

.monthly-table-hidden {
    display: none !important;
    opacity: 0;
}

.monthly-table-visible {
    display: block !important;
    opacity: 1;
    animation: fadeIn 0.3s ease-in-out;
}

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