/*
 * Style-Informationen für die Tabelle
 */
.not_show {
    display: none;
}

/* Mit der Information, werden die Überschriften der Termine vollständig dargestellt */
.fc-h-event .fc-event-main-frame {
    display: block;
    white-space: normal;
    word-wrap: break-word;
}

/* Setzen der Title-Informationen */
.fc-toolbar-title, .fc .fc-toolbar-title {
    font-size: 1.4em;
    padding-bottom: 0em;
}

/* Setzen der Buttonfarbe */
.fc-dayGridMonth-button.fc-button.fc-button-primary, .fc-dayGridWeek-button.fc-button.fc-button-primary.fc-button-active,
    .fc-icon.fc-icon-chevron-left, .fc-next-button.fc-button.fc-button-primary,
    .fc-today-button.fc-button.fc-button-primary {
    background-color: var(--fc-button-bg-color);
    border-color: var(--fc-button-border-color);
    color: var(--fc-button-text-color);
}

.fc .fc-button {
    border: none;
    border-radius: 0em;
    line-height: normal;
    font-size: 1em;
    padding: 0.3em;
}

/* Erzeugt einen Abstand zwischen den Buttons, damit diese besser sichtbar sind */
.fc .fc-button-group {
    row-gap: 0.2em;
    column-gap: 0.2em;
}

.fc .fc-button .fc-icon {
    font-size: 1em;
}

/* Farbe der Überschrift im Kalender */
.fc-col-header-cell-cushion, .fc-daygrid-day-number {
    color: #00924e;
}

/* Terminblocker */
.dil-terminblocker {
    width: 100%;
    display: grid;
    row-gap: 0.5em;
}

/* Anzahl Spalten */
.dil-eine-spalte {
    grid-template-columns: auto;
}

.dil-zwei-spalten {
    grid-template-columns: auto auto;
}

.dil-drei-spalten {
    grid-template-columns: auto auto auto;
}

.dil-vier-spalten {
    grid-template-columns: auto auto auto auto;
}

.dil-fuenf-spalten {
    grid-template-columns: auto auto auto auto auto;
}

.dil-calendar-even {
    background-color: lightgrey;
}

.dil-calendar-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin: 0;
}

.dil_calendar_icon {
    max-width: 1em;
    max-height: 1em;
}

#dil_calendar_messagebox, .termin_reservation {
    margin-bottom: 1em;
}

.success-box {
    background-color: lightgreen;
}

.info-box {
    background-color: lightblue;
}

.error-box {
    background-color: lightcoral;
}