@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #1a5632;
    --primary-dark: #0d2818;
    --primary-light: #2d7a4a;
    --primary-glow: rgba(26,86,50,0.15);
    --secondary: #f0c040;
    --accent: #edfaf2;
    --sidebar-width: 268px;
    --text-dark: #111827;
    --text-muted: #6b7280;
    --bg-light: #f0f4f8;
    --white: #ffffff;
    --border: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow: 0 4px 16px rgba(0,0,0,0.07);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.16);
    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =================== PAGE TRANSITIONS =================== */
.content-area {
    animation: pageEnter 0.32s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@keyframes pageEnter {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =================== LOGIN PAGE =================== */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d2818 0%, #1a5632 45%, #2d7a4a 100%);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.login-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 10%, rgba(45,122,74,0.25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 90%, rgba(13,40,24,0.4) 0%, transparent 60%);
    pointer-events: none;
}

.login-wrapper::after {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    top: -200px; right: -200px;
    pointer-events: none;
}

.login-card {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.1);
    width: 100%;
    max-width: 420px;
    padding: 52px 44px 44px;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: loginCardIn 0.5s cubic-bezier(0.21,1.02,0.73,1) both;
}

@keyframes loginCardIn {
    from { opacity: 0; transform: translateY(30px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.login-card .logo {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 8px 24px var(--primary-glow);
}

.login-card .logo img,
.sidebar-header .app-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: inherit;
}

.login-card h1 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.login-card .subtitle {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 32px;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 18px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 7px;
    letter-spacing: 0.1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
    background: #fafafa;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-group textarea { resize: vertical; min-height: 90px; }

/* =================== BUTTONS =================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    gap: 7px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background 0.15s;
    border-radius: inherit;
}

.btn:active::after { background: rgba(255,255,255,0.15); }

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    width: 100%;
    box-shadow: 0 4px 14px var(--primary-glow);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(26,86,50,0.3);
}

.btn-secondary {
    background: #f3f4f6;
    color: var(--text-dark);
    border: 1.5px solid var(--border);
}
.btn-secondary:hover { background: #e9eaf0; }

.btn-success {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(22,163,74,0.2);
}
.btn-success:hover { transform: translateY(-1px); }

.btn-danger {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(220,38,38,0.2);
}
.btn-danger:hover { transform: translateY(-1px); }

.btn-warning {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(217,119,6,0.2);
}
.btn-warning:hover { transform: translateY(-1px); }

.btn-info {
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
    color: var(--white);
}

.btn-sm {
    padding: 6px 13px;
    font-size: 12px;
    border-radius: 8px;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 12px;
}

.btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none !important;
}

/* =================== ALERTS =================== */
.alert {
    padding: 13px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-danger  { background: #fff1f2; color: #be123c; border: 1px solid #fecdd3; }
.alert-success { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.alert-info    { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.alert-warning { background: #fffbeb; color: #b45309; border: 1px solid #fde68a; }

/* =================== LAYOUT =================== */
.app-wrapper {
    display: flex;
    min-height: 100vh;
}

/* =================== SIDEBAR =================== */
.sidebar {
    width: var(--sidebar-width);
    background: linear-gradient(180deg, #0d2818 0%, #122e1e 60%, #183828 100%);
    color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255,255,255,0.04);
}

.sidebar-header {
    padding: 28px 20px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    text-align: center;
    flex-shrink: 0;
}

.sidebar-header .app-logo {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.sidebar-header h2 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.sidebar-header small {
    color: rgba(255,255,255,0.45);
    font-size: 11px;
    line-height: 1.4;
    display: block;
    margin-top: 4px;
}

.sidebar-menu {
    padding: 12px 0 20px;
    flex: 1;
}

.menu-label {
    padding: 14px 20px 5px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: rgba(255,255,255,0.3);
    font-weight: 700;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    margin: 2px 10px;
    padding: 10px 14px;
    color: rgba(255,255,255,0.68);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: var(--transition);
    gap: 11px;
    border-radius: 10px;
}

.sidebar-menu a:hover {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    transform: translateX(2px);
}

.sidebar-menu a.active {
    background: linear-gradient(135deg, rgba(45,122,74,0.5), rgba(45,122,74,0.25));
    color: var(--white);
    font-weight: 600;
    border-left: 3px solid var(--secondary);
    padding-left: 11px;
    box-shadow: inset 0 0 0 1px rgba(240,192,64,0.15);
}

.sidebar-menu a .icon {
    width: 22px;
    text-align: center;
    font-size: 15px;
    flex-shrink: 0;
}

/* =================== MAIN CONTENT =================== */
.main-content {
    margin-left: var(--sidebar-width);
    flex: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.topbar {
    background: var(--white);
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 500;
}

.topbar .page-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.3px;
}

.topbar .user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar .user-info .avatar {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 10px var(--primary-glow);
}

.topbar .user-info .name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.topbar .user-info .role-badge {
    font-size: 11px;
    background: var(--accent);
    color: var(--primary);
    padding: 2px 9px;
    border-radius: 20px;
    font-weight: 700;
}

.content-area {
    padding: 28px 30px;
    flex: 1;
}

/* =================== CARDS =================== */
.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 22px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    transition: box-shadow 0.2s;
}

.card:hover {
    box-shadow: var(--shadow-lg);
}

.card-header {
    padding: 17px 22px;
    border-bottom: 1px solid var(--border);
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fafafa;
}

.card-body {
    padding: 22px;
}

/* =================== STAT CARDS =================== */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    cursor: default;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.stat-card .stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.stat-card .stat-icon.green  { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #065f46; }
.stat-card .stat-icon.blue   { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: #1d4ed8; }
.stat-card .stat-icon.orange { background: linear-gradient(135deg, #ffedd5, #fed7aa); color: #c2410c; }
.stat-card .stat-icon.purple { background: linear-gradient(135deg, #ede9fe, #ddd6fe); color: #6d28d9; }
.stat-card .stat-icon.red    { background: linear-gradient(135deg, #fee2e2, #fecaca); color: #b91c1c; }
.stat-card .stat-icon.teal   { background: linear-gradient(135deg, #ccfbf1, #99f6e4); color: #0f766e; }

.stat-card .stat-info h3 {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    letter-spacing: -1px;
}

.stat-card .stat-info p {
    color: var(--text-muted);
    font-size: 12.5px;
    margin-top: 4px;
    font-weight: 500;
}

/* =================== TABLE =================== */
.table-responsive {
    overflow-x: auto;
    border-radius: var(--radius-sm);
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th {
    padding: 11px 15px;
    text-align: left;
    background: #f8fafc;
    font-weight: 700;
    color: var(--text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
}

table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
    font-size: 13.5px;
    vertical-align: middle;
}

table tbody tr {
    transition: background 0.15s;
}

table tbody tr:hover {
    background: #f8fffe;
}

table tbody tr:last-child td { border-bottom: none; }

/* Row removal animation */
table tbody tr.removing {
    animation: rowFadeOut 0.4s ease forwards;
    pointer-events: none;
}
@keyframes rowFadeOut {
    from { opacity: 1; transform: translateX(0); }
    to   { opacity: 0; transform: translateX(40px); }
}

/* =================== BADGES =================== */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.2px;
    white-space: nowrap;
}
.badge-success { background: #dcfce7; color: #15803d; }
.badge-danger  { background: #fee2e2; color: #b91c1c; }
.badge-warning { background: #fef3c7; color: #b45309; }
.badge-info    { background: #dbeafe; color: #1d4ed8; }
.badge-primary { background: #d1fae5; color: var(--primary); }

/* =================== ANNOUNCEMENT CARD =================== */
.announcement-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 22px;
    margin-bottom: 14px;
    border-left: 4px solid var(--primary);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.announcement-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.announcement-card .ann-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.announcement-card .ann-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 500;
}

.announcement-card .ann-content {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.65;
}

/* =================== MOBILE / HAMBURGER =================== */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--primary-dark);
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: var(--transition);
}
.hamburger:hover { background: var(--accent); }

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    backdrop-filter: blur(2px);
}

/* =================== EMPTY STATE =================== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}
.empty-state .icon { font-size: 52px; margin-bottom: 16px; opacity: 0.6; }
.empty-state h3 { font-size: 17px; margin-bottom: 6px; color: var(--text-dark); font-weight: 600; }
.empty-state p { font-size: 14px; }

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
    .content-area { padding: 22px 20px; }
}

@media (max-width: 768px) {
    .sidebar { transform: translateX(-100%); }
    .sidebar.open { transform: translateX(0); box-shadow: var(--shadow-xl); }
    .sidebar-overlay.open { display: block; }
    .main-content { margin-left: 0; }
    .hamburger { display: block; }
    .content-area { padding: 18px 14px; }
    .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .login-card { padding: 36px 24px 28px; }
    .topbar { padding: 12px 16px; }
    .topbar .page-title { font-size: 16px; }
    .topbar .user-info .name { display: none; }
    table th, table td { padding: 10px 12px; font-size: 13px; }
}

@media (max-width: 480px) {
    .stat-grid { grid-template-columns: 1fr; }
}

/* =================== SCROLLBAR =================== */
.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #9ca3af; }

/* =================== MODAL =================== */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(3px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-backdrop.show { display: flex; }

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 520px;
    width: 100%;
    padding: 32px;
    box-shadow: var(--shadow-xl);
    animation: dialogIn 0.28s cubic-bezier(0.21,1.02,0.73,1) both;
}
.modal-content h3 {
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-size: 18px;
    font-weight: 700;
}

/* =================== FOOTER =================== */
.footer {
    text-align: center;
    padding: 18px 20px;
    color: var(--text-muted);
    font-size: 12.5px;
    border-top: 1px solid var(--border);
    margin-top: auto;
    background: var(--white);
}

/* =================== TOAST NOTIFICATION =================== */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    max-width: 380px;
    width: calc(100vw - 40px);
}

.toast {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.1);
    font-size: 13.5px;
    font-weight: 500;
    color: #fff;
    pointer-events: auto;
    animation: toastIn 0.35s cubic-bezier(.21,1.02,.73,1) both;
    position: relative;
    overflow: hidden;
    line-height: 1.45;
}
.toast.hide { animation: toastOut 0.3s ease forwards; }

.toast-success { background: linear-gradient(135deg, #065f46, #059669); }
.toast-danger  { background: linear-gradient(135deg, #991b1b, #dc2626); }
.toast-warning { background: linear-gradient(135deg, #78350f, #d97706); }
.toast-info    { background: linear-gradient(135deg, #1e3a8a, #2563eb); }

.toast-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.toast-body { flex: 1; }

.toast-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.65);
    cursor: pointer;
    font-size: 17px;
    line-height: 1;
    padding: 0 0 0 4px;
    flex-shrink: 0;
    transition: color 0.15s;
    align-self: flex-start;
}
.toast-close:hover { color: #fff; }

.toast-progress {
    position: absolute;
    bottom: 0; left: 0;
    height: 3px;
    background: rgba(255,255,255,0.35);
    animation: toastProgress linear forwards;
}

@keyframes toastIn {
    from { opacity: 0; transform: translateX(60px) scale(0.92); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes toastOut {
    to { opacity: 0; transform: translateX(60px) scale(0.92); }
}
@keyframes toastProgress {
    from { width: 100%; }
    to   { width: 0%; }
}

/* =================== CONFIRM DIALOG =================== */
#confirm-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 99998;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}
#confirm-backdrop.show { display: flex; }

#confirm-dialog {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px 28px;
    max-width: 380px;
    width: 100%;
    box-shadow: 0 24px 80px rgba(0,0,0,0.28);
    text-align: center;
    animation: dialogIn 0.25s cubic-bezier(.21,1.02,.73,1) both;
}
@keyframes dialogIn {
    from { opacity: 0; transform: scale(0.88); }
    to   { opacity: 1; transform: scale(1); }
}

#confirm-dialog .confirm-icon { font-size: 46px; margin-bottom: 14px; line-height: 1; }
#confirm-dialog h4 { font-size: 17px; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
#confirm-dialog p  { font-size: 14px; color: var(--text-muted); margin-bottom: 26px; line-height: 1.6; }
#confirm-dialog .confirm-actions { display: flex; gap: 10px; justify-content: center; }

/* =================== DATATABLES OVERRIDE =================== */
.dataTables_wrapper { font-family: inherit; }
.dataTables_wrapper .dataTables_filter { margin-bottom: 12px; }
.dataTables_wrapper .dataTables_filter label { font-size: 13px; font-weight: 500; color: var(--text-muted); }
.dataTables_wrapper .dataTables_filter input {
    border: 1.5px solid var(--border);
    border-radius: 9px;
    padding: 7px 12px;
    font-size: 13px;
    font-family: inherit;
    margin-left: 6px;
    outline: none;
    transition: var(--transition);
    background: #fafafa;
}
.dataTables_wrapper .dataTables_filter input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
    background: var(--white);
}
.dataTables_wrapper .dataTables_length select {
    border: 1.5px solid var(--border);
    border-radius: 9px;
    padding: 5px 10px;
    font-family: inherit;
    font-size: 13px;
    margin: 0 6px;
}
.dataTables_wrapper .dataTables_info { font-size: 12.5px; color: var(--text-muted); }
.dataTables_wrapper .dataTables_paginate .paginate_button {
    border-radius: 8px !important;
    font-size: 13px !important;
    padding: 5px 10px !important;
    font-family: inherit !important;
    margin: 0 2px !important;
    border: none !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: var(--primary) !important;
    color: #fff !important;
    font-weight: 700 !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover:not(.current) {
    background: var(--accent) !important;
    color: var(--primary) !important;
}