
/* Calendar disabled style */
.calendar-disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

.fc-col-header-cell-cushion {
    font-weight: bold;
    color: #505050;
    text-decoration: none;
}

.fc-timegrid-slots tr:nth-child(odd) .fc-timegrid-slot {
    background-color: #f8f9fa;
}

.fc-timegrid-slots tr:nth-child(even) .fc-timegrid-slot {
    background-color: #e9ecef;
}

.fc-event-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;

}

.fc-event-delete-container {
    position: absolute;
    top: 1px;
    right: 1px;
    margin: 0;
}

.fc-event-icon-time-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
}

.fc-event-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 1px;
    max-width: 60px;
    max-height: 60px;
}

.fc-event-icon-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.fc-event-time-container {
    font-size: 14px;
    color: white;
    margin-top: 4px;
}

.delete-event {
    cursor: pointer;
    color: black;
    background-color: gray;
    border: none;
    border-radius: 0.25rem;
    font-size: 1rem;
    line-height: 1rem;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.delete-event:hover {
    color: black;
    background-color: darkgrey;
}

.fc-event-time {
    /*
    white-space: nowrap;
    overflow: hidden;
    margin: 1px;
     */
}


.fc-timegrid-slot-label-cushion {
    font-size: 14px;
}

.fc .fc-timegrid-slot {
    height: 1.3em;
    line-height: 1.3em;
}

.fc-timegrid-slot-label:nth-child(4n+1) .fc-timegrid-slot-label-cushion {
    position: relative;
}

/* Event classes */

.fc-event-common {
    opacity: 0.8;
    margin-left: 1px;
}

.fc-event-heating {
    background-color: #ff8c00;
    border-color: #ff7000;
}

.fc-event-cooling {
    background-color: #83cadc;
    border-color: #00CCFF;
}

.fc-event-level-1 {
    background-color: #F9CD00;
    border-color: #F9BD00;
}

.fc-event-level-2 {
    background-color: #F9C000;
    border-color: #F9B000;
}

.fc-event-level-3 {
    background-color: #F9B300;
    border-color: #F9A300;
}

.fc-event-level-4 {
    background-color: #F9A700;
    border-color: #F99700;
}

.fc-event-level-5 {
    background-color: #F99900;
    border-color: #F98900;
}

.fc-event-level-auto {
    background-color: #66B512;
    border-color: #66A512;
}

.fc-event-no-func {
    background-color: darkgrey;
    opacity: 0.5;
}

#automatic-circulation-table td:first-child {
    width: 30%; /* Užší šířka pro levý sloupec */
}

#automatic-circulation-table td:last-child {
    width: 70%; /* Širší šířka pro pravý sloupec */
}

