.search_container {
    position: relative;
    margin-bottom: 8px;
}

.search_input {
    display: block;
    /* width: 100%;
    padding: 8px;
    background: #f9f9f9 */
}

.search_output {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    width: 100%;
    overflow-y: hidden;
    transition: all .3s;
    z-index: 1000;
}

.search_output.hidden {
    max-height: 0;
    padding: 0px;
    background: #fafafa;
}

.search_output.visible {
    max-height: 180px;
    padding: 2px;
    background: white;
}

.search_output.scrollable {
    overflow-y: auto;
}

.search_output_item {
    display: block;
    padding: 8px 8px;
    margin-bottom: 4px;
    background: white;
    transition: all .3s;
}

.search_output_item:last-child {
    margin-bottom: 0px;
}

.search_output_item:hover {
    padding: 8px 8px;
    background: #19aa8d;
    color: white;
    cursor: pointer;
}


/*sort data css*/

.sortable-table-header {
    cursor: pointer;
}

.sortable-table-header.active::after {
    border: solid #0000007d;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 2px;
    content: ' ';
    margin-left: 8px;
    margin-top: 7px;
}

.sortable-table-header.active.ascending::after {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.sortable-table-header.active.descending::after {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}


/*For verify page css*/

.student-thumbnail {
    height: 60px;
    width: 60px;
}

#overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    cursor: pointer;
}

.remarkdiv {
    width: 70%;
    height: auto;
    top: 30%;
    /* left: 20%; */
    position: fixed;
    z-index: 9999;
    padding: 20px;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0px 4px 8px 0px #6c757d;
    display: none;
}

.no-top {
    top: 0 !important;
}

#closeButton {
    /* float: right;
    top: 0;
    color: black;
    font-weight: 900;
    margin-top: -10px;
    cursor: pointer; */
    float: right;
    top: 0;
    color: black;
    font-weight: 900;
    margin-top: 10px;
    cursor: pointer;
    position: absolute;
    left: 98%;
    z-index: 99999;
}

#closeButton1 {
    float: right;
    top: 0;
    color: black;
    font-weight: 900;
    margin-top: 10px;
    cursor: pointer;
    position: absolute;
    left: 98%;
    z-index: 99999;
    display: none;
}

.btncolorred {
    background-color: red;
    margin-left: 4px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 4px;
}

.btncoloryellow {
    background-color: rgb(70 65 7);
    margin-left: 4px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 4px;
}

.btncolorgreen {
    background-color: green;
    margin-left: 4px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 4px;
}

.btncolorgray {
    background-color: gray;
    margin-left: 10px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 4px;
}

.btncolorblue {
    background-color: #0000ffb8;
    margin-left: 10px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    margin-top: 10px;
}

.btn {
    border-width: 2px;
    font-weight: 600;
    font-size: 0.8571em;
    line-height: 1.35em;
    text-transform: uppercase;
    border: none;
    border-radius: 3px;
    /* margin: 10px 1px;
    padding: 11px 22px; 
    background-color: #66615B;*/
    cursor: pointer;
    color: #FFFFFF;
    transition: all 150ms linear;
}

.btn-warning {
    background-color: #fbc658;
    color: #000000 !important;
}

.btn-primary {
    background-color: #51cbce;
    color: #000000 !important;
}

.btn-primary:hover {
    background-color: #37b0b3 !important;
    color: #000000 !important;
}

.btnCss {
    margin-left: 10px;
    cursor: pointer;
    width: 25px;
    height: 25px;
    border-radius: 4px;
}

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 9999;
    /* Sit on top */
    /* padding-top: 100px; */
    /* Location of the box */
    left: 0;
    top: 0;
    height: auto;
    background-image: url('https://picsum.photos/800/400');
    background-color: rgba(0, 0, 0, 0.2);
    /* Transparent black */
    /* background-color: rgba(61, 60, 60, 0.184); */
    /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 55%;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    text-align: right;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.btn-info:hover {
    color: #fff;
    background-color: #0f0f10 !important;
    border-color: #0f0f10 !important;
}

/* Style for input fields */
input[type="date"] {
    border: 2px solid #007bff;
    /* Blue border */
    border-radius: 5px;
    padding: 8px;
    transition: all 0.3s ease-in-out;
}

/* Highlight input on focus */
input[type="date"]:focus {
    border-color: #ff9800;
    /* Orange border on focus */
    box-shadow: 0 0 10px rgba(255, 152, 0, 0.5);
    outline: none;
}

/* Search button styles */
.btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    border-radius: 5px;
    font-weight: bold;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff9800, #e65100);
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Adjust alignment */
.form-group label {
    font-weight: bold;
    color: #333;
}

.bgshadow {
    box-shadow: 0px 4px 8px 0px gray;
}

.col-custom {
    flex: 0 0 20%;
    max-width: 20%;
}

th {
    cursor: pointer;
}

.pagination {
    margin: 20px 0;
    text-align: center;
    float: right;
}

.pagination button {
    padding: 10px;
    margin: 0 5px;
    border: 1px solid #ddd;
    background-color: #f1f1f1;
    cursor: pointer;
}

.pagination button.active {
    background-color: #4CAF50;
    color: white;
}

.table>tr>td {
    /* font-size: 0.85rem;
    line-height: 1.5;*/
    white-space: unset;
    border: 1px solid #b9b9b9;
    line-height: 1.42857;
    padding: 8px;
    vertical-align: middle;
}

/* Trigger button */
.enquiry-btn {
    padding: 12px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin: 20px;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    /* Transparent background */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Popup Form */
.popup {
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    line-height: 20px;
}

.popup h2 {
    margin-bottom: 20px;
    font-size: 22px;
    text-align: center;
}

.popup label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

.popup input,
.popup textarea,
.popup select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 16px;
}

.popup .btn-group {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.popup button {
    padding: 10px 16px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

.popup button:hover {
    background: #0056b3;
}

/* Responsive styles */
@media (max-width: 480px) {
    .popup {
        padding: 20px;
        line-height: 10px;
    }

    .popup h2 {
        font-size: 20px;
    }

    .popup button {
        padding: 10px 12px;
        font-size: 14px;
    }

    .popup input,
    .popup textarea,
    .popup select {
        font-size: 14px;
    }
}

.bgshadow {
    box-shadow: 0px 4px 8px 0px gray;
}

.col-custom {
    flex: 0 0 20%;
    max-width: 20%;
}

th {
    cursor: pointer;
}

.pagination {
    margin: 20px 0;
    text-align: center;
    float: right;
}

.pagination button {
    padding: 10px;
    margin: 0 5px;
    border: 1px solid #ddd;
    background-color: #f1f1f1;
    cursor: pointer;
}

.pagination button.active {
    background-color: #4CAF50;
    color: white;
}

.table>tr>td {
    /* font-size: 0.85rem;
    line-height: 1.5;*/
    white-space: unset;
    border: 1px solid #b9b9b9;
    line-height: 1.42857;
    padding: 8px;
    vertical-align: middle;
}