@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');
body {
    font-family: 'Inter', sans-serif;
    background-color: #f7fafc;
}
/* Custom styles for gradients and shadows */
.hero-gradient {
    background: linear-gradient(180deg, #1f2937 0%, rgba(31, 41, 55, 0.7) 100%);
}
.card-shadow {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.calendar-day:hover {
    background-color: #e2e8f0;
    cursor: pointer;
}
.calendar-day.selected {
    background-color: #3b82f6;
    color: white;
    font-weight: bold;
}
