:root {
    --brand: #1f6f8b;
    --brand-dark: #15566b;
    --accent: #f2b880;
    --bg: #f6f8fb;
    --text: #1f2933;
    --muted: #5f6b7a;
}

body {
    font-family: "Poppins", system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
}

.navbar-brand {
    font-weight: 600;
    letter-spacing: 0.2px;
}

.hero {
    background: linear-gradient(120deg, #e6f3f7, #ffffff);
    border-radius: 18px;
    padding: 48px;
}

.card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(31, 41, 51, 0.08);
}

.badge-status {
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 500;
}

.badge-active {
    background: rgba(31, 111, 139, 0.15);
    color: var(--brand-dark);
}

.badge-inactive {
    background: rgba(239, 68, 68, 0.15);
    color: #b91c1c;
}

.btn-brand {
    background: var(--brand);
    color: #fff;
    border: none;
}

.btn-brand:hover {
    background: var(--brand-dark);
    color: #fff;
}

.section-title {
    font-weight: 600;
}

.table thead {
    background: #eef3f7;
}

.stat-card {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-card h3 {
    font-size: 1.6rem;
    margin: 0;
}

.stat-card span {
    color: var(--muted);
}
