/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #F3F4F6; /* Gray-100 */
    color: #1F2937; /* Gray-800 */
}

/* Glassmorphism utility */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: #0B7A4B; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #27AE60; 
}

/* Smooth transition */
.transition-all-200 {
    transition: all 0.2s ease-in-out;
}

/* DataTables customization for Tailwind */
table.dataTable.no-footer {
    border-bottom: 1px solid #e5e7eb;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
    border-radius: 0.375rem !important;
    border: 1px solid transparent !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: #0B7A4B !important;
    color: white !important;
    border-color: #0B7A4B !important;
}
