:root {
    --cg-accent: #0d6efd;
    --cg-dark: #0f172a;
    --cg-soft: #eef4ff;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(13, 110, 253, 0.18), transparent 28%),
        radial-gradient(circle at right bottom, rgba(25, 135, 84, 0.12), transparent 22%),
        #f8fafc;
}

.app-shell {
    min-height: 100vh;
}

.placeholder-logo {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--cg-accent), #6ea8fe);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.hero-card {
    border: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.97), rgba(111, 66, 193, 0.93));
}

.hero-card .list-group-item {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
}

.stat-card,
.soft-card {
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 1rem 3rem rgba(15, 23, 42, 0.06);
}

.soft-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
}

.permission-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    font-size: 0.85rem;
    background: var(--cg-soft);
    color: var(--cg-accent);
}

.login-wrapper {
    min-height: 100vh;
}

.login-panel {
    max-width: 460px;
}

.login-brand {
    text-decoration: none;
}

.page-header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(12px);
}

.nav-link.active-card {
    background: rgba(13, 110, 253, 0.08);
    color: var(--cg-accent);
    border-radius: 0.75rem;
}

.module-card {
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.module-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 1rem 2rem rgba(15, 23, 42, 0.09);
}

.table-role-badge {
    min-width: 6rem;
}

@media (max-width: 991.98px) {
    .login-wrapper {
        padding: 1.5rem 0;
    }
}

