/* style.css – schlichtes Design, BS5-Ergänzungen */

:root {
    --brand: #1a1a2e;
}

/* Body */
body {
    font-size: .875rem;
    background-color: #f4f5f7;
}

/* Navbar */
.navbar {
    background-color: var(--brand) !important;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Cards */
.card {
    border-radius: .5rem;
}

.card-header {
    border-radius: .5rem .5rem 0 0 !important;
    font-size: .8125rem;
}

/* Tabellen */
.table th {
    font-weight: 600;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: #6c757d;
}

.table td, .table th {
    vertical-align: middle;
    padding: .35rem .6rem;
}

/* Modals */
.modal-content {
    border-radius: .6rem;
}

/* Formulare */
.form-control-sm, .form-select-sm {
    font-size: .8125rem;
}

/* Login-Seite */
body.d-flex .card {
    border-radius: .75rem;
}

/* Responsive Tabelle – kleiner Schrift auf Mobile */
@media (max-width: 576px) {
    .table { font-size: .75rem; }
    .navbar-brand { font-size: .95rem; }
}
