/* style.css */
/* Zusätzliche Styles über Bootstrap hinaus */

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 480px; /* Optimierung für kleine Smartphones */
}

/* Formularfelder */
input, select, button {
    font-size: 1rem;
}

/* Buttons volle Breite */
button {
    width: 100%;
}

/* Kleine Abstände unten bei Formularfeldern */
form .mb-3 {
    margin-bottom: 1rem;
}

/* Für Fehler- oder Erfolgsmeldungen */
.alert {
    font-size: 0.9rem;
}

/* Fix für Chart-Canvas in kleineren Containern */
#tempChart {
    max-width: 100%;
    height: auto !important;
}

/* Navigation Buttons */
a.btn {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Footer Buttons Floating */
.float-end {
    margin-top: 1rem;
}
