/* Allgemeine Stile für den Buchungssystem-Container */
.left-container {
    background-color: #f7f3e9; /* Helles Beige für den Hintergrund */
    padding: 20px;
    border: 1px solid #d2b48c; /* Hellbrauner Rand */
    border-radius: 8px; /* Abgerundete Ecken */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Schatten für Tiefe */
    margin-bottom: 20px;
    max-width: 500px; /* Begrenzte Breite */
    margin: 0 auto; /* Zentriert den Container */
}

/* Überschrift */
.left-container h2 {
    margin-top: 0;
    font-size: 24px; /* Größere Schrift */
    color: #8b4513; /* Dunkelbraune Überschrift */
    text-align: center;
    font-weight: bold;
}

/* Formularelemente */
.left-container .form-group {
    margin-bottom: 15px; /* Abstand zwischen Formularfeldern */
}

.left-container label {
    font-weight: bold;
    color: #4a3b31; /* Dunkelbraune Schrift */
    margin-bottom: 5px;
    display: block;
}

.left-container input[type="date"],
.left-container input[type="text"],
.left-container select {
    width: 100%; /* Volle Breite */
    padding: 10px;
    font-size: 16px;
    border: 1px solid #d2b48c; /* Hellbrauner Rand */
    border-radius: 5px; /* Abgerundete Ecken */
    box-sizing: border-box; /* Padding und Rand berücksichtigen */
}

.left-container input[type="text"]::placeholder {
    color: #aaa; /* Helles Grau für Platzhalter */
}

/* Schaltflächen */
.left-container button {
    width: 100%;
    padding: 12px 20px;
    background-color: #8b4513; /* Dunkelbraun */
    color: #fff; /* Weißer Text */
    font-size: 16px;
    border: none;
    border-radius: 5px; /* Abgerundete Ecken */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.left-container button:hover {
    background-color: #a0522d; /* Hellbraun beim Hover */
}

/* Medienabfragen für responsives Design */
@media (max-width: 768px) {
    .left-container {
        padding: 15px;
        max-width: 90%; /* Verkleinert sich auf Mobilgeräten */
    }

    .left-container h2 {
        font-size: 20px; /* Kleinere Schrift auf kleinen Bildschirmen */
    }

    .left-container button {
        font-size: 14px;
    }
}
