:root {
    --bg: #f8fafc;
    --bg-card: #ffffff;
    --bg-soft: #e5e7eb;

    --text: #0f172a;
    --text-muted: #475569;

    --accent: #2563eb;
    --border: rgba(0,0,0,0.1);
}

html[data-theme="dark"] {
    --bg: #0f172a;
    --bg-card: #1e293b;
    --bg-soft: #162033;

    --text: #e2e8f0;
    --text-muted: #94a3b8;

    --accent: #38bdf8;
    --border: rgba(255,255,255,0.1);
}

body {
    background: var(--bg);
    color: var(--text);
}

/* NAVBAR */
.navbar-glass {
    background: var(--bg-card) !important;
    border-bottom: 1px solid var(--border);
}

/* CARD */
.card-glass {
    background: var(--bg-card) !important;
    border: 1px solid var(--border) !important;
    border-radius: 14px;
    padding: 18px;
}

/* INPUT */
.form-control {
    background: var(--bg-card) !important;
    color: var(--text) !important;
    border: 1px solid var(--border) !important;
}

.form-control::placeholder {
    color: var(--text-muted) !important;
}

/* BUTTON */
.btn-accent {
    background: var(--accent) !important;
    color: #fff !important;
}

/* TABLE */
.table {
    color: var(--text) !important;
}

.table thead {
    background: var(--bg-soft) !important;
}

.table tbody tr {
    background: var(--bg-card) !important;
    border-bottom: 1px solid var(--border);
}

/* ALERT */
.alert {
    background: var(--bg-soft) !important;
    color: var(--text) !important;
    border: 1px solid var(--border) !important;
}
