#calendar {
    flex: 1;
    min-height: 0;
    overflow: auto;
}

#calendar .fc-toolbar {
    align-items: center;
}

#calendar .fc-button {
    background-color: #4F4538;
}

#calendar .fc-toolbar-title {
    font-size: 24px;
    font-weight: 600;
}

/* Das Modal des Kalenders */

.modal.hidden, #modal-overlay.hidden {
    display: none;
}

#modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
}

.modal-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    float: right;
    cursor: pointer;
}