/* Custom styling beyond Tailwind */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

/* Custom scrollbar for webkit */
::-webkit-scrollbar, .custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track, .custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb, .custom-scrollbar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover, .custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Modal animations */
#alarmModal:not(.hidden) {
    display: flex;
}

#alarmModal.show {
    opacity: 1;
}

#alarmModal.show > div {
    transform: scale(1);
}

.text-center-last {
    text-align-last: center;
}