/* * ZENTRALE STYLESHEET (Modernisiert & Konsolidiert)
 * Einbindung von Bootstrap 5 erfolgt via CDN in deinen PHP-Dateien.
 * Dies hier sind deine projektspezifischen Custom-Styles.
 */

/* Basis-Anpassungen */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

/* Tabellen-Stil (ehemals #border) */
table#border, td#border, th#border {
    border: 1px solid #dee2e6;
}

/* Button-Styling (ersetzt die alten Farbverläufe durch sauberes Bootstrap-Look) */
.btn-maddi {
    background-color: #aebfdd;
    color: #aa0000;
    font-weight: bold;
    border-radius: 5px;
}

/* Form-Stil (aus style.txt übernommen und angepasst) */
.form-style-1 {
    margin: 10px auto;
    max-width: 100%;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-style-1 label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

/* Canvas & Receipt Styles (aus den spezifischen Dateien erhalten) */
#canvasPaper {
    border: 3px solid #a0a0a0;
    max-width: 95%;
    height: auto;
}

.table-abrechnung {
    display: table;
    width: 100%;
}
.tr1 { display: table-row; }
.td, .td1, .td2, .td5 { display: table-cell; padding: 5px; }

/* Responsive Korrekturen */
@media (max-width: 768px) {
    .container-fluid { padding: 5px !important; }
}