#all_students_table thead th {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Prevent td from wrapping */
#all_students_table td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#all_students_table th {
    padding: 10px; /* Adjust the padding value as needed */
}

.table-responsive {
    overflow-x: scroll;
}

.student-registered {
    background-color: rgba(255, 247, 230, 0.1);
    color: #ffc548;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    position: relative;
    border: 1px solid #ffc548;
    text-transform: capitalize;
}

.student-enrolled {
    background-color: #42ba961a;
    color: #42ba96;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    position: relative;
    border: 1px solid #42ba96;
    text-transform: capitalize;
}

.student-blocked {
    background-color: #eb4d4b12;
    color: #e33c3c;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    position: relative;
    border: 1px solid #e33c3c;
    text-transform: capitalize;
}

.search-group-row {
    margin-bottom: 48px;
}

.radio-lbl{
    margin-right: 55px;
    font-weight: 600;
}

.radio-lbl input{
    margin-right: 4px;
}

.search-column-lbl {
    margin-bottom: 14px;
    font-weight: 600;
}

.btn_view {
    background: #5d308e;
    color: white;
    padding-top: 6px;
    padding-left: 14px;
    padding-right: 14px;
    padding-bottom: 6px;
}

#DataTableSearch {
    width: 100%;
    height: 48px;
    border: 1px solid #ced4da;
    border-radius: 9px;
    padding-left: 8px;
}