.single_course_section {
    padding: 50px 0;
}

.courses_left_content {
    border: 0.5px solid rgb(159, 159, 159);
}

.courses_left_header {
    background-color: var(--primary-background-color);
    color: var(--primary-text-color);
    text-align: center;
    padding: 5px 0;
}

.course_start_date {
    display: flex;
    padding: 12px;
    width: 100%;
    gap: 10px;
    align-items: center;
    border-bottom: 0.5px solid rgb(146, 146, 146);
}


.course_color_1 {
    background-color: var(--header-box-color-1);
}

.course_bg_color_1 h5 {
    color: var(--header-box-color-1);
}

.course_color_2 {
    background-color: var(--header-box-color-2);
}

.course_bg_color_2 h5 {
    color: var(--header-box-color-2);
}

.course_color_3 {
    background-color: var(--header-box-color-3);
}

.course_bg_color_3 h5 {
    color: var(--header-box-color-3);
}

.course_color_4 {
    background-color: var(--header-box-color-4);
}

.course_bg_color_4 h5 {
    color: var(--header-box-color-4);
}

.course_date_icon_box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.course_date_icon_box i {
    font-size: 25px;
    color: white;
}



.courses_right_content {
    border: 0.5px solid rgb(159, 159, 159);
    padding: 10px;
}

.course_img {
    width: 100%;
    height: 450px;
}

.course_description {
    margin: 10px 0;
}

.table tr th:nth-child(1) {
    background-color: var(--header-box-color-1);
}

.table tr th:nth-child(2) {
    background-color: var(--header-box-color-2);
}

.table tr th:nth-child(3) {
    background-color: var(--header-box-color-3);
}

.table tr th:nth-child(4) {
    background-color: var(--header-box-color-4);
}

.table tr th:nth-child(5) {
    background-color: var(--header-box-color-1);
}

.table tr th:nth-child(6) {
    background-color: var(--header-box-color-2);
}

.table tr th:nth-child(7) {
    background-color: var(--header-box-color-3);
}

.table tr td:nth-child(1) {
    color: var(--header-box-color-1);
}

.table tr td:nth-child(2) {
    color: var(--header-box-color-2);
}

.table tr td:nth-child(3) {
    color: var(--header-box-color-3);
}

.table tr td:nth-child(4) {
    color: var(--header-box-color-4);
}

.table tr td:nth-child(5) {
    color: var(--header-box-color-1);
}

.table tr td:nth-child(6) {
    color: var(--header-box-color-2);
}

.table tr td:nth-child(7) {
    color: var(--header-box-color-3);
}




/* ################ Result Section ################## */
.first_person {
    position: relative;
}

.first_person_logo {
    position: absolute;
    width: 100px;
    height: 100px;
    left: 10px;
}

.first_second_third_img {
    height: 400px;
    width: 100%;
}

/* ################ Result Section ################## */



/* ############### Calendar ################ */
.calendar {
    width: 100% !important;
    margin: 10px auto;
}

.month {
    text-align: center;
    padding: 10px;
    background-color: var(--primary-background-color);
    color: var(--primary-text-color);
    font-size: 18px;
}

table {
    width: 100% !important;
    border-collapse: collapse;
}

th,
td {
    text-align: center;
    padding: 10px;
    border: 1px solid #ddd;
}

#calendar-table th {
    background-color: var(--primary-background-color);
    color: var(--primary-text-color);
}

/* td {
    cursor: pointer;
} */

/* td:hover {
    background-color: var(--button-hover-color);
} */

.today {
    background-color: #f39c12;
    color: #fff;
    font-weight: bold;
}

.sunday {
    background-color: rgb(225, 58, 58);
}

/* ############### Calendar ################ */





/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .first_second_third_img {
        height: 200px;
        width: 100%;
    }
    .course_img {
        width: 100%;
        height: 200px;
    }
    .first_person_logo {
        position: absolute;
        width: 70px;
        height: 70px;
        left: 5px;
    }
    
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 768px) {
    .body_header_hide{
        display: none !important;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 768px) {

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

}