/* Basis-Stylesheet für Bestell-, Status- und Rechtsseiten */
@import url('fonts/fonts.css');

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    line-height: 1.6;
}

h1, h2 {
    font-family: 'Lora', serif;
    color: #004d40;
}

a { color: #004d40; }

/* Bestellübersicht */
.order-summary table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}
.order-summary th, .order-summary td {
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    text-align: left;
}
.order-summary thead th {
    background-color: #004d40;
    color: #ffffff;
}
.totals {
    text-align: right;
    background: #EDEBE1;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 10px 15px;
}
.totals p { margin: 6px 0; }

/* Rechtliche Checkboxen */
.legal-consent { margin: 30px 0; }
.consent-list { list-style: none; padding: 0; margin: 0; }
.consent-list li {
    background: #f8f8f4;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 12px 15px;
    margin-bottom: 10px;
}
.consent-list input[type="checkbox"] { margin-right: 8px; transform: scale(1.2); }

/* Bezahl-Button */
.payment { margin: 30px 0; }
#payBtn {
    display: block;
    width: 100%;
    background-image: linear-gradient(to top, #ffc107, #f7d56a);
    border: none;
    color: #333;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s;
}
#payBtn:hover { transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.1); }
#payBtn:disabled { background: #ccc; background-image: none; cursor: not-allowed; transform: none; box-shadow: none; }

/* Statusmeldungen (zahlung-erfolgreich.html) */
.status-message {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    background: #f8f8f4;
}
.hidden { display: none; }
