body{
    background-color: #539896;
    color: #FFFFFF;
    font-weight: 400;
}

.main_head{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: max-content;
    padding: 5px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 10;
}

.serv_column{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}


#calendar {
    height: max-content;
    width: max-content;
    z-index: 1;
    border-radius: 6px;
    font-weight: 400;
}

#calendar_head {
    width: 98%;
    margin: 0 auto 10px auto;
    display: flex;
    padding: 5px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #E7F0DB;
}

.c_row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 15px;
}

.c_cell {
    text-align: center;
    width: 2.7vw;
    border-radius: 8px;
    cursor: pointer;
}

.c_cell:hover{
    background-color: #90A0A3;
}


.zapis_time{
    display: inline-block;
    background-color: #D8E7C1;
    border-radius: 6px;
    padding: 4px;
    text-align: center;
    font-weight: 400;
    font-style: normal;
    height: 1.8vw;
    width: 3vw;
    line-height: 1.8vw;
    margin: 10px;
    cursor: pointer;
    color: black;
}

.zapis_time_m{
    display: inline-block;
    background-color: #D8E7C1;
    border-radius: 6px;
    padding: 8px;
    text-align: center;
    font-weight: 400;
    font-style: normal;
    margin: 10px;
    color: black;
}

div[name='myspec']:hover{
    text-decoration: underline;
}

div[name='tm_doc']::-webkit-scrollbar{
    width: 5px;
    height: 5px;
    background-color: #f0f0f0;
}
div[name='tm_doc']::-webkit-scrollbar-thumb{
    background-color: #D8E7C1;
}

.loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid lightblue;
    border-right-color: #646A87;
    animation: l2 1s infinite linear;
}
@keyframes l2 {to{transform: rotate(1turn)}}