/**
 * style.css
 * Ergänzende Styles zu Bootstrap 5 für die Kundenverwaltung.
 * Bootstrap deckt bereits das Meiste ab - hier nur kleine Feinheiten.
 */

body {
    background-color: #f8f9fa;
}

.navbar-brand {
    font-weight: 600;
}

/* Sortierbare Tabellen-Spaltenüberschriften */
table thead th a {
    white-space: nowrap;
    cursor: pointer;
}

table thead th a:hover {
    text-decoration: underline !important;
}

.table-responsive {
    background: #fff;
    border-radius: 0.5rem;
    padding: 0.5rem;
}

.card {
    border-radius: 0.75rem;
}

/* Etwas mehr Abstand für Formulare auf kleinen Bildschirmen */
@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
