/* ============================
   Kalender-Container
   ============================ */
.calendar-container {
    max-width: 600px;           /* Breite des Kalenders */
    margin: 0 auto;             /* Zentriert auf der Seite */
    padding: 20px;              /* Innenabstand */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    background-color: #fff;     /* Hintergrundfarbe */
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
}

/* ============================
   Mobile Anpassung
   ============================ */
@media (max-width: 768px) {
    .calendar-container {
        max-width: 90%;
        padding: 15px;
    }
}

/* ============================
   Flatpickr Input Styling
   ============================ */
.flatpickr-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1rem;
}

/* ============================
   Buttons Styling
   ============================ */
button, input[type="submit"] {
    background-color: #4a3989;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

button:hover, input[type="submit"]:hover {
    background-color: #352963;
}

/* ============================
   Erfolg-/Fehler-Meldungen
   ============================ */
.booking-message {
    margin-top: 10px;
    font-weight: bold;
    text-align: center;
}

.booking-message.success { color: green; }
.booking-message.error { color: red; }

/* ============================
   Optional: kleine optische Verbesserungen
   ============================ */

/* Formulareingaben */
input, select, textarea {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
}

/* Labels */
label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

/* Links im Kalender */
.calendar-container a {
    color: #4a3989;
    text-decoration: none;
}

.calendar-container a:hover {
    text-decoration: underline;
}
