/* Anda bisa menambahkan CSS kustom di sini jika diperlukan */
/* Contoh: gaya untuk sidebar aktif */
.sidebar-link.active {
    background-color: #fb923c; /* Kode warna oranye dari Tailwind */
    color: white;
    font-weight: 600;
}

/* Efek shadow yang lebih kuat untuk elemen interaktif */
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
