.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    font-weight: bold;
    margin-bottom: 10px;
}

.calendar-nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    align-items: center;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.day-cell {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    min-height: 110px;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.day-cell.today {
    border: 3px solid #0073aa;
    background: #f0f8ff;
}

.ride-pill {
    margin-top: 6px;
    padding: 3px 6px;
    border-radius: 12px;
    border: 1px solid black;
    background: #f7f7f7;
    font-size: 12px;
    line-height: 1.2;
}
