/* Sidebar & Overlay Logic - Handled by Tailwind classes in navbar.php and index-1.php */
/* #sidebar.active {
    transform: translateX(0) !important;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 29; 
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
} */

/* Custom Scrollbar for Sidebar */
#sidebar::-webkit-scrollbar {
    width: 6px;
}
#sidebar::-webkit-scrollbar-track {
    background: #1f2937; 
}
#sidebar::-webkit-scrollbar-thumb {
    background: #4b5563; 
    border-radius: 3px;
}
#sidebar::-webkit-scrollbar-thumb:hover {
    background: #6b7280; 
}

/* DataTables Tailwind Override/Integration */
.dataTables_wrapper .dataTables_length select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    border-color: #d1d5db;
    border-radius: 0.375rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.dataTables_wrapper .dataTables_filter input {
    border-color: #d1d5db;
    border-radius: 0.375rem;
    padding: 0.25rem 0.5rem;
    margin-left: 0.5rem;
}

table.dataTable.no-footer {
    border-bottom: 1px solid #e5e7eb !important;
}

/* Landing Page Specifics (if any remain) */
.landing-banner img {
    object-fit: cover;
}
