/* css/event-calendar.css */
#event-calendar-container {
    max-width: 1200px;
    margin: 0 auto;
}

#event-filter {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#event-filter label {
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

#event-location-filter {
    padding: 8px 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
    width: 200px;
}

#event-location-filter:hover {
    border-color: #888;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

#event-location-filter:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.3);
}

#calendar {
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 600px) {
    #event-filter {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
    }

    #event-location-filter {
        width: 100%;
    }
}

.fc-button-group {
    gap: 0.5rem;
}
.fc-daygrid-event {
    display: block!important;
    padding-left: 15px!important;
  }
.fc-daygrid-event {
    white-space: normal !important;
    align-items: normal !important;
    line-height: normal;
    cursor: pointer;
}
.fc-daygrid-event-dot {
    display: inline-flex;
    position: absolute;
    left: 0px;
    top: 6px;
}
.fc-event-time, .fc-event-title {
    display: inline;
    margin-left: 2px;
    font-weight: 500 !important;
    line-height: normal !important;
}
#calendar-legend {
    display: flex;
    justify-content: center;;
    gap: 0.75rem;
    margin: 2rem 1rem 0 1rem;
}