@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Inter', sans-serif;
    background-color: #f9fafb;
}

/* Smooth transitions for all interactive elements */
button, a, input, select {
    transition: all 0.2s ease;
}

/* Better focus states */
button:focus, input:focus, select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}
.alarm-item {
    transition: all 0.3s ease;
}
.alarm-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Alarm notification styles */
.fixed {
    position: fixed;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.z-50 {
    z-index: 50;
}

/* Animation for alarm notification */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}
.alarm-notification {
    animation: pulse 1.5s infinite;
}

/* Report page styles */
#sleep-chart {
    width: 100% !important;
    height: 100% !important;
}

.bg-blue-50 {
    background-color: #eff6ff;
}
.bg-blue-100 {
    background-color: #dbeafe;
}
.bg-blue-200 {
    background-color: #bfdbfe;
}
#alarm-time::-webkit-calendar-picker-indicator {
    filter: invert(0.5);
}