.section-filter {
    padding: 0 20px;
}

.section-filter > form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 0;
}

.section-filter h5 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-filter h5::before {
    content: '';
    background: transparent url('/plugins/SessionManagement/assets/images/filter.svg') no-repeat center center;
    width: 35px;
    height: 35px;
    display: block;
    background-size: contain;
}

.section-filter .filter {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.section-filter .filter label {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: normal;
}

.section-courses dl {
    background-color: #fff;
    box-shadow: 0px 0px 14px 0px rgb(0 0 0 / 30%);
}

.section-courses dt {
    padding: 15px 20px;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    border: 2px solid #fff;
    font-size: 16px;
}

.section-courses dd{
    padding: 0 0 0 20px;
}

.section-courses dt h6 {
    font-weight: bold;
    font-size: 18px;
    color: #000;
    margin: 0;
}

.section-courses dt > div {
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-courses dt .angle::before,
.section-courses dt.active .angle::before {
    font-family: 'FontAwesome';
    font-size: 20px;
    line-height: 100%;
}

.section-courses dt .angle::before {
    content: "\f107";
}

.section-courses dt.active .angle::before {
    content: "\f106";
}

.monthtable  th .angle.asc::before,
.monthtable  th .angle.desc::before{
    font-family: 'FontAwesome';
    font-size: 20px;
    line-height: 100%;
    padding: 3px;
}

.monthtable th .angle.asc::before {
    content: "\f107";
}

.monthtable th .angle.desc::before {
    content: "\f106";
}

.sortable{
    cursor: pointer;
}

.section-courses dt.active {
    border: 2px solid black;
}

.section-courses dt.active h6 {
    color: black;
}

.section-courses dd { display:none; }

.section-courses table {
    width: 100%;
}

.section-courses table th:not(:first-of-type),
.section-courses table td:not(:first-of-type) {
    text-align: center;
}

.section-courses table tbody tr {
    border-top: 1px solid #f2f2f2;
}

.section-courses table td {
    padding: 20px 15px 12px 20px;
    font-size: 15px;
}

.section-courses table th {
    padding: 20px 15px 12px 20px;
    font-size: 18px;
    color: #000;
    width: 15%;
}

.section-courses table th:first-of-type {
    padding-left: 0;
    width: 25%;
}

.section-courses table td:first-of-type {
    font-weight: bold;
}

.section-courses .operations {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.section-courses .operations a.fa {
    margin: 0;
}

.section-courses .operations .user-book,
.section-courses .operations .user-book > div {
    display: flex;
}

.section-courses .operations .user-book {
    flex-direction: column;
}

.section-courses .operations .user-add,
.section-courses .operations .user-remove {
    width: 27px;
    height: 25px;
    display: block;
    background-size: contain !important;
}

.section-courses .operations .user-remove {
    margin-top: -1px;
    height: 27px;
}

.section-courses .operations .user-add {
    background: transparent url('/plugins/SessionManagement/assets/images/user-add.svg') no-repeat center center;
}

.section-courses .operations .user-remove {
    background: transparent url('/plugins/SessionManagement/assets/images/user-remove.svg') no-repeat center center;
}

.section-courses .courses-empty {
    padding: 20px 0;
    text-align: center;
}

@media(max-width: 900px) {


    .section-filter > form {
        flex-wrap: wrap;
    }

    .section-filter .filter {
        flex-basis: 100%;
    }

    .section-filter .filter label {
        width: 20%;
    }
}