/* SeWebServices — custom dark theme overrides on top of Bootstrap 5 dark mode */

html, body {
    min-height: 100vh;
    background-color: #0d1117;
}

/* ── Layout ─────────────────────────────────────────────────── */
.layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
}

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar-brand {
    font-weight: 700;
    letter-spacing: 0.03em;
}

/* ── Auth pages (login / register) ─────────────────────────── */
.auth-card-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 70px);
}

/* ── Tables ─────────────────────────────────────────────────── */
.table {
    --bs-table-bg: transparent;
}

/* ── Validation messages ────────────────────────────────────── */
.validation-message {
    color: var(--bs-danger-text-emphasis);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* ── Subtle card borders ────────────────────────────────────── */
.card {
    border-color: rgba(255, 255, 255, 0.1);
}

/* ── Status badges ──────────────────────────────────────────── */
.status-badge {
    display: inline-block;
    padding: 0.25em 0.65em;
    border-radius: 0.375rem;
    font-size: 0.8rem;
    font-weight: 600;
}
