.kelas_top_menus{
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0 0 15px 0;
    margin: 0;
    border-bottom: 1px solid #f96332;
} 
.kelas_top_menus li a{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    border-radius: 4px; 
    text-decoration: none;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    gap: 5px;
}
.kelas_top_menus li.active a{ 
    background-color: var(--orange);
    color: #fff;
}
.kelas_top_menus li a:hover{ 
    background-color: var(--yellow); 
}
.alert.alert-success {
    background-color: #30802c;
}
.panel-header { 
    background: #f96332;
    background: -webkit-gradient(linear, left top, right top, from(#f96332), color-stop(60%, #f55c28), to(#f96e41));
    background: linear-gradient(to right, #f96332 0%, #f55c28 60%, #f96e41 100%); 
    min-height: 62px;
    height: auto;
}
.panel-header .header .title {
    color: #FFFFFF;
    text-shadow: 0px 0px 10px #222222;
}
.list-custom{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.list-custom > .list-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    background-color: #ffece5;
    border: 1px solid #ffa385;
    padding: 0px 10px;
}
.list-custom > .list-item.disabled{ 
    background-color: #e7e7e7;
    border: 1px solid #f4b6b6;
}
.pagination{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px; 
}
.pagination li a{
    padding: 3px 5px;
    font-weight: bold;
    color: grey;
}
.pagination li.active a{
    color: #f55c28;
}
.table-responsive {
    overflow: unset; 
    overflow-x: auto;
    overflow-y: hidden;
}

.item_resul{
    display: flex;
    gap: 10px;
}
.item_resul a{
    cursor: pointer;
    display: inline-block;
    padding: 0 5px;
    border-radius: 7px;
    background: #e78282;
    color: #fff;
}
.list_selected{
    padding: 0;
    margin: 0;
    list-style: none;
}
.list_selected li{
    display: block; 
}
.list_selected li i{ 
    color: #f06a3e;
}
.btn-success {
    background-color: #22591f; 
}
.btn-success:hover {
    background-color: #297025; 
} 
.table>thead>tr>th { 
    font-size: inherit;
    font-weight: bold; 
}
.table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td {
    padding: 5px 7px; 
    font-size: inherit;
}
.sidebar-wrapper li a{
    position: relative;
}
.sidebar-wrapper li a .badge{
    position: absolute;
    right: 10px;
    font-size: small;
    border-radius: 50%;
    min-width: 20px;
    top: calc(50% - 10px);
    text-align: center;
    height: 20px;
    display: inline-block;
}
.btn-link{
    background: #db7639;
    font-weight: bold;
    padding: 0 3px;
    border-radius: 5px;
    color: #fff;
}