.event-date {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    margin-right: 35px;
    text-align: center;
}
.event-date .month {
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: -5px;
}
.event-date .day {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: -3px;
}
.event-date .day-of-week {
    font-size: 0.5rem;
    text-transform: uppercase;
    opacity: 0.5;
}
.event-chip {
    width: 5px;
    height: 60px;
    background-color: #007bff;
}

.event-chip.in-the-past {
    background-color: #6c757d;
}

/* Past events styling */
.in-the-past {
    opacity: 0.7;
}

/* Past events toggle button styling */
.btn-outline-secondary {
    border-color: #6c757d;
    color: #6c757d;
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
}

/* Hide past events */
.hidden-past-event {
    display: none !important;
}

.list-group-item.event {
    border: none;
}

