/* assets/css/style.css */

/* Custom Scrollbar for minimalistic look */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Base Styles */
body {
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Card Hover Effects */
.hover-card {
    transition: all 0.3s ease;
}
.hover-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Smooth Transitions */
a, button, input {
    transition: all 0.2s ease-in-out;
}

/* DataTables Minimalist Override */
.dataTables_wrapper .dataTables_length select,
.dataTables_wrapper .dataTables_filter input {
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    padding: 0.25rem 0.5rem;
    outline: none;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: #111827 !important;
    color: white !important;
    border-color: #111827 !important;
}

/* Sidebar Active Link Style */
.sidebar-link.active {
    background-color: #f3f4f6;
    color: #111827;
    font-weight: 500;
}
