
/*# sourceMappingURL=custom.min.css.map */

.message_box {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
}

.mdi_icon{
    font-size: 17px;
}
.dataTables_scrollBody{min-height: 200px;}

/* Add this to your CSS */
th[data-sort] {
    cursor: pointer;
    user-select: none;
    position: relative;
    white-space: nowrap;
}

th[data-sort]:hover {
    background-color: #f8f9fa;
}

th[data-sort] i {
    margin-left: 5px;
    font-size: 12px;
    opacity: 0.7;
}

.table-responsive {
    max-height: 70vh;
    overflow-y: auto;
}

/* Ensure table headers stay visible during scroll */
table thead th {
    position: sticky;
    top: 0;
    background-color: #f8f9fa;
    z-index: 10;
    border-bottom: 2px solid #dee2e6;
}

/* Style for search input */
#tableSearch {
    border-right: none;
}

#tableSearch:focus {
    box-shadow: none;
    border-color: #ced4da;
}

.input-group-text {
    background-color: #fff;
}

/* Badge styling for better visibility */
.category-badge {
    margin: 1px;
    font-size: 0.7em;
}

/* Responsive table */
@media (max-width: 768px) {
    .table-responsive {
        font-size: 0.8rem;
    }
    
    th[data-sort] i {
        font-size: 10px;
    }
}

/* Sort indicator */
.fa-sort-up, .fa-sort-down {
    opacity: 1 !important;
    color: #0d6efd;
}