/* 
 * RS Sari Mulia Custom Styles
 * Complements Tailwind CSS
 */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

[x-cloak] {
    display: none !important;
}

/* Page Transition */
.page-enter {
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Utilities for Glassmorphism that are easier in CSS */
.shadow-soft {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #85cbae;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0e7a77;
}