/* Custom scrollbar styles for table-responsive */
.table-responsive::-webkit-scrollbar {
    height: 12px;
}

.table-responsive::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 6px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: #adb5bd;
    border-radius: 6px;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
    background: #6c757d;
}

.table-responsive {
    scrollbar-width: auto;
    scrollbar-color: #adb5bd #f8f9fa;
}

/* Highlight search text */
.highlight-search {
    background-color: #ffeb3b;
    padding: 2px 0;
    font-weight: 600;
}

/* Cursor pointer */
.cursor-pointer {
    cursor: pointer;
}
