/* Custom Dropdown */
.custom-dropdown-container {
    position: relative;
}

.custom-dropdown-options {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
    z-index: 1000;
}

.custom-dropdown-options div {
    padding: 10px;
    cursor: pointer;
}

.custom-dropdown-options div:hover,
.custom-dropdown-options div.active {
    background-color: #e9ecef;
}

/* Table Sorting */
.sortable {
    cursor: pointer;
    position: relative;
}

.sortable::after {
    content: '\2195'; /* Up-down arrow */
    position: absolute;
    right: 10px;
    opacity: 0.3;
}

.sortable.asc::after {
    content: '\25B2'; /* Up arrow */
    opacity: 1;
}

.sortable.desc::after {
    content: '\25BC'; /* Down arrow */
    opacity: 1;
}
