:root {
    /* ── CORE BIMA COLORS ── */
    --bg-deep: #104734;
    --bg-panel: #1A3E30;
    --accent: #90AB8C;
    --accent-hi: #EBF5DD;
    --cream: #EBF4DD;

    --success: #2ea043;
    --danger: #da3633;
    --warning: #d29922;

    --mono: 'Tahoma', sans-serif;
    --sans: 'Tahoma', sans-serif;
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--sans);
    background: var(--bg-deep);
    color: #fff;
    font-size: 14px;
}

/* ── CUSTOM SCROLLBAR ── */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(16, 71, 52, 0.1);
    border-radius: 999px;
    transition: background 0.3s;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(16, 71, 52, 0.2);
}

/* ── ANIMATIONS ── */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 #2ea04340;
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 4px #2ea04310;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-in {
    animation: slideIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ── TABULATOR LIGHT THEME (Placeholder for next step) ── */
.tabulator.light-theme {
    background: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}