body {
    font-family: 'Prompt', sans-serif;
}

.calendar-day-cell {
    min-height: 110px;
    padding: 0.25rem;
}

.events-container {
    max-height: 75px;
    overflow-y: auto;
    margin-top: 4px;
}
.events-container::-webkit-scrollbar {
    width: 3px;
}
.events-container::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 4px;
}

@media (max-width: 640px) {
    .calendar-day-cell {
        min-height: 80px;
    }
    .events-container {
        max-height: 45px;
    }
}