/*
Theme Name: SMK YPM 2 Taman
Theme URI: https://smkypm2taman.sch.id
Author: adetxt@live.com
Author URI: https://smkypm2taman.sch.id
Description: Custom theme based on school template using Tailwind CSS.
Version: 1.0.0
Text Domain: smk-ypm
*/

/* Custom styles not covered by Tailwind can go here */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color, #15803d);
    border-radius: 4px;
}

.section-content {
    display: none;
}
.section-content.active {
    display: block;
}
