.main_body_schedule_cl {
    width: 100vw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding: 0 1.5rem;
    padding-top: 15vh;
    gap: 10vh;
}

.catalog_names_shedule_cl {
    font-size: 6vh;
    font-weight: bold;
    /* background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: white;
    line-height: 1.2;
    animation: titleReveal 1s ease-out;
}

@media (max-width: 800px) {
    .catalog_names_shedule_cl {
        margin-top: 10vh;
    }
}

/* =============== ТАБЛИЦА =============== */

.timetable_cl {
    width: calc(100% - 15rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 8vh;
    margin-bottom: 20vh;
}

.timetable_dashboard_cl {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1vw;
}

/* --- управления датой --- */

.timetable_dashboard_cl>section:nth-child(1) {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1vw;
}

.hover_arrow_cl {
    font-size: 3vh;
    color: var(--gray_text_color);
    ;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timetable_dashboard_cl>section:nth-child(1)>div:nth-child(2) {
    font-size: 3vh;
    color: var(--gray_text_color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hover_arrow_cl:hover {
    transition: 300ms all;
    cursor: pointer;
    color: white;
}

/* --- управления типом расписаний --- */

.timetable_dashboard_cl>section:nth-child(2) {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1vw;
}

.timetable_dashboard_cl>section:nth-child(2)>div {
    border-radius: 0.5vw;
    width: 15vw;
    height: 5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5vh;
    color: white;
    transition: 300ms all;
    padding: 0.5vw;
    padding-left: 1vw;
    padding-right: 1vw;
    text-shadow: 2px 2px 4px black;
}

.timetable_dashboard_cl>section:nth-child(2)>div:hover {
    cursor: pointer;
    color: var(--accent);
}

.timetable_dashboard_cl>section:nth-child(2)>div:nth-child(1) {
    background-color: var(--accent);
}

/* --- головная часть таблицы --- */

.head_of_table_cl {
    width: calc(100vw - 15rem);
    /* display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between; */
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    /* 7 колонок одинаковой ширины */
}

.head_of_table_cl>div {
    height: 5vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px;
    font-size: 2.5vh;
    color: rgb(255 255 255 / 0.5);
}

/* --- дни недели --- */

.days_of_the_week_cl {
    width: calc(100vw - 15rem);
    /* display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between; */
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    /* 7 колонок одинаковой ширины */
}

.days_of_the_week_cl>div {
    height: 15vh;
    background-size: cover;
    background-position: 50% 75%;
    transition: 300ms all;
    background-color: #0a072070;
}

.days_of_the_week_fog_cl {
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    padding: 5px;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    font-size: 2.5vh;
    color: rgb(255 255 255 / 0.5);
    transform: translateX(-1px) translateY(-0.5px);
}

.days_of_the_week_cl>div:hover {
    cursor: pointer;
    filter: brightness(150%);
    background-color: rgba(255, 255, 255, 0.15);
}

/* --- типы блоков --- */


.b_l_bor_block_cl {
    border-bottom: 1px solid rgb(255 255 255 / 0.15);
    border-left: 1px solid rgb(255 255 255 / 0.15);
}

.b_bor_block_cl {
    border-bottom: 1px solid rgb(255 255 255 / 0.15);
}

.r_bor_block_cl {
    border-left: 1px solid rgb(255 255 255 / 0.15);
}

@media (max-width: 1000px) {
    .timetable_cl {
        width: 100%;
    }

    .scheduling_blocks_cl {
        width: 100%;
    }

    .head_of_table_cl {
        width: 100%;
    }

    .days_of_the_week_cl {
        width: 100%;
    }

    .timetable_dashboard_cl>section:nth-child(2)>div {
        width: 20vw;
    }

}


@media (max-width: 700px) {

    .timetable_dashboard_cl {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 1vw;
    }

    .timetable_dashboard_cl>section:nth-child(2)>div {
        width: 30vw;
        font-size: 1.8vh;
        border-radius: 2vw;
    }

}

/* --- Блок расписания --- */

.schedule_block_cl {
    width: 95%;
    height: 100%;
    /* background-color: blue; */
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    gap: 5px;
    padding-left: 10px;
}

.schedule_block_cl>span:nth-child(1) {
    font-size: 1.25vh;
    color: var(--accent);
    text-shadow: 1px 1px 2px black;
}

.schedule_block_cl>span:nth-child(2) {
    font-size: 1.25vh;
    color: white;
}

@media (max-width: 700px) {

    .days_of_the_week_cl>div {
        height: 20vh;
    }

    .days_of_the_week_fog_cl {
        font-size: 1.2vh;
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .schedule_block_cl {
        width: 100%;
        padding-left: 0;
    }

    .schedule_block_cl>span:nth-child(1) {
        font-size: 1vh;
    }

    .schedule_block_cl>span:nth-child(2) {
        font-size: 1vh;
    }

}