/*css pro kalendar*/

.calendar-rows {

   display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
}

.calendar-row {
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    margin-top: 1%;
    margin-bottom: 1%;
    height: 10%;
    min-height: 20%;
    flex-basis: 10%;
}

.slot {
    width: 7%;
    margin-left: 0.25%;
    margin-right: 0.25%;
    padding-left: 5px;
    overflow: hidden;
}

.class-slot {
    background-color: rgb(84, 121, 106);
}

.empty-slot {
    background-color: rgb(220, 223, 217);
}

.blocked-slot {
    background-color: dimgray;
}

.selected-slot {
    background-color: gold;
}

.past-slot {
    background-color: rosybrown;
}

.info-slot-booked-for {
    padding-left: 2px;
    font-size: 50%;
    height: 20%;
    line-height: 1em;
    display: block;
}

.info-slot-event {
    font-size: 75%;
}

.hover-slot {
    background-color: lightyellow;
}

.slot-cancel-button {
    background-color: red;
    width: 10%;
    height: 20%;
    margin-bottom: 2px;
    margin-right: 4px;
    float: right;
}

.calendar-date-range {
    padding: 3px;
}