body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #ffffff;
    color: #333;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
}

h1, h2, legend {
    color: #c00000;
    font-family: inherit;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: inherit;
}

input[type="text"],
input[type="email"],
input[type="password"],
select {
    width: 100%;
    padding: 0.4rem;
    margin-top: 0.2rem;
    box-sizing: border-box;
    font-family: inherit;
}

button {
    background-color: #c00000;
    color: #fff;
    border: none;
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    margin-top: 1rem;
    border-radius: 4px; /* leichte Abrundung */
    font-size: 1rem;
    font-family: inherit;
}

button:hover {
    background-color: #a00000;
}

.btn {
    display: inline-block;
    background-color: #c00000;
    color: #fff;
    padding: 0.4rem 0.8rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.btn:hover {
    background-color: #a00000;
}

.alert {
    padding: 0.8rem;
    margin-bottom: 1rem;
    font-family: inherit;
}

.alert-danger {
    background-color: #ffe0e0;
    border-left: 4px solid #c00000;
    font-family: inherit;
}

.alert-success {
    background-color: #e0ffe0;
    border-left: 4px solid #00a000;
    font-family: inherit;
}

.info {
    background-color: #f9f9f9;
    border-left: 4px solid #c00000;
    padding: 0.5rem 0.8rem;
    margin-bottom: 1rem;
    font-family: inherit;
}

fieldset {
    border: 1px solid #ddd;
    padding: 0.5rem 0.8rem;
    margin-bottom: 1rem;
}

.required-label .label-text::after {
    content: " *";
    color: #c00000;
    font-weight: bold;
    font-family: inherit;
}

.legend-required {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.3rem;
    margin-bottom: 0.8rem;
    font-family: inherit;
}

.legend-required strong {
    color: #c00000;
    font-weight: bold;
    font-family: inherit;
}

.settings-textarea {
    width: 100%; /* oder z.B. 600px */
    height: 120px; /* fixe Starthöhe */
    box-sizing: border-box;
    resize: vertical; /* nur vertikal vergrößerbar, oder: none */
}

.settings-textarea-small {
    width: 100%; /* oder z.B. 600px */
    height: 60px; /* fixe Starthöhe */
    box-sizing: border-box;
    resize: vertical; /* nur vertikal vergrößerbar, oder: none */
}

@media (max-width: 600px) {
    .container {
        padding: 0.5rem;
    }

    button {
        width: 100%;
    }
}

.booking-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    font-size: 0.8333rem;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden; /* für abgerundete Ecken */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.booking-table thead {
    background-color: #f5f5f5;
}

.booking-table th,
.booking-table td {
    padding: 0.6rem 0.8rem;
    text-align: left;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.booking-table th {
    font-weight: 600;
    color: #444;
    white-space: nowrap;
}

.booking-table tbody tr:nth-child(odd) {
    background-color: #fafafa;
}

.booking-table tbody tr:hover {
    background-color: #f0f4ff;
}

