h1 {
  font-size: 24px;
  color: #d32f2f;
  margin-bottom: 10px;
  text-align: center;
}

/* 📅 Stil für das KW-Dropdown-Menü */
.kw-filter-form {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.kw-filter-form label {
  font-weight: bold;
  font-size: 1.3rem;
  color: #ff0000;
}

.kw-filter-form select {
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  color: #333;
  transition: border-color 0.2s ease;
}

.kw-filter-form select:focus {
  border-color: #007bff;
  outline: none;
}


/* Fortschrittsbalken */
.progress-container {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    padding: 10px;
}

.progress-step {
    text-align: center;
    flex: 1;
    position: relative;
}

.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50%;
    width: 100%;
    height: 2px;
    background-color: #ddd;
    z-index: -1;
}

.step-number {
    background-color: #ddd;
    color: #555;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-weight: bold;
}

.step-title {
    margin-top: 5px;
    font-size: 14px;
}

.progress-step.active .step-number {
    background-color: #28a745;
    color: white;
}

.progress-step.active:not(:last-child)::after {
    background-color: #28a745;
}

.countdown {
    font-size: 16px;
    color: #d33;
    margin-top: 10px;
    text-align: center;
    font-weight: bold;
}





 body {
    font-family: Monolith, sans-serif;
  
    background-color: #f5f5f5;
}

.container {
    max-width: 800px;
    margin: 2em auto;
    background: white;
    padding: 2em;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h2 {
    text-align: center;
    margin-bottom: 1.5em;
}

.zeit {
    font-weight: bold;
}

.termin-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    row-gap: 4px; /* 👉 Abstand zwischen Zeilen */
    font-size: 15px;

}
.termin-card {
    margin-bottom: 1px; /* oder 12px für etwas mehr Abstand */
}
.termin-card {
    padding: 8px;
    margin-bottom: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #f9f9f9;
}


.termin-aktionen {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.plaetze {
    font-weight: bold;
    color: #555;
}

.btn-buchen,
.btn-warteliste,
.btn-stornieren {
    padding: 12px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
}

.btn-buchen {
    background-color: #28a745;
    color: white;
}

.btn-buchen:hover {
    background-color: #218838;
}

.btn-stornieren {
    background-color: #ff0000;
    color: white;
}

.btn-stornieren:hover {
    background-color: #8b0000;
}


.btn-warteliste {
    background-color: #ffc107;
    color: black;
}

.btn-warteliste:hover {
    background-color: #e0a800;
}

.voll {
    color: #dc3545;
    font-weight: bold;
}



/*BUCHEN*/
/* Zentrierung und einheitliches Layout */

.buchungsformular,
.termin-details,
ul.buchungs-info {
    max-width: 600px;
    margin: 0 auto 20px auto;
    background: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.buchungsformular label {
    display: block;
    margin-bottom: 15px;
    font-weight: bold;
}

.buchungsformular input {
    display: block;
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.btn-buchen, .btn-warteliste {
/*    background-color: #22c55e;*/
    color: white;
    border: none;
    padding: 10px 18px;
   display:block;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
}

.btn-abbrechen,
.btn-zurueck {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: #555;
    font-weight: normal;
}

.success {
    color: green;
    text-align: center;
    font-weight: bold;
}

.error {
    color: red;
    text-align: center;
    font-weight: bold;
}

ul.buchungs-info {
    list-style: none;
    padding-left: 0;
}

ul.buchungs-info li {
    margin-bottom: 6px;
}


//BUCHUNGSFORMULAR


    .buchungsformular label {
        display: block;
        margin-bottom: 4px;
        font-weight: bold;
    }

    .buchungsformular input[type="text"],
    .buchungsformular input[type="email"],
    .buchungsformular select {
        width: 100%;
        padding: 8px;
        margin-bottom: 12px;
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
        height: 38px; /* Einheitliche Höhe */
    }

    .buchungsformular select {
        -webkit-appearance: none; /* Einheitliches Aussehen */
        -moz-appearance: none;
        appearance: none;
    }

    .buchungsformular button {
        background-color: #28a745;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
        font-size: 16px;
        cursor: pointer;
        margin-top
    }
    
    
    //WARTELISTE
  
    .buchungsformular label {
        display: block;
        margin-bottom: 4px;
        font-weight: bold;
    }

    .buchungsformular input[type="text"],
    .buchungsformular input[type="email"],
    .buchungsformular input[type="number"],
    .buchungsformular select {
        width: 100% !important;
        padding: 8px !important;
        margin-bottom: 12px !important;
        font-size: 16px !important;
        border: 1px solid #ccc !important;
        border-radius: 4px !important;
        box-sizing: border-box !important;
        height: 38px !important; /* Einheitliche Höhe */
    }

    .buchungsformular select {
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        appearance: none !important;
    }

    .buchungsformular button {
        background-color: #28a745 !important;
        color: white !important;
        padding: 10px 20px !important;
        border: none !important;
        border-radius: 4px !important;
        font-size: 16px !important;
        cursor: pointer !important;
        margin-top: 10px !important;
    }

    .buchungsformular button:hover {
        background-color: #218838 !important;
    }

    .success {
        color: #28a745;
        font-weight: bold;
        margin: 10px 0;
    }

    .error {
        color: #d33;
        font-weight: bold;
        margin: 10px 0;
    }
    
    
//STORNIEREN
    
    .buchungsformular label {
        display: block;
        margin-bottom: 4px;
        font-weight: bold;
        margin-top: 8px;
    }

    .buchungsformular input[type="text"],
    .buchungsformular input[type="email"],
    .buchungsformular input[type="number"],
    .buchungsformular select {
        width: 100% !important;
        padding: 8px !important;
        margin-bottom: 12px !important;
        font-size: 16px !important;
        border: 1px solid #ccc !important;
        border-radius: 4px !important;
        box-sizing: border-box !important;
        height: 38px !important; /* Einheitliche Höhe */
        transition: border-color 0.2s ease-in-out;
    }

    .buchungsformular input[type="text"]:focus,
    .buchungsformular input[type="email"]:focus,
    .buchungsformular input[type="number"]:focus,
    .buchungsformular select:focus {
        border-color: #007bff !important;
        outline: none !important;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.3) !important;
    }

    .buchungsformular button {
/*        background-color: #d33 !important;*/
        color: white !important;
        padding: 10px 20px !important;
        border: none !important;
        border-radius: 4px !important;
        font-size: 16px !important;
        cursor: pointer !important;
        margin-top: 10px !important;
        transition: background-color 0.3s ease;
        width: 100%; /* Vollflächiger Button */
    }

/*    .buchungsformular button:hover {
        background-color: #c12a2a !important;
    }*/

    .success {
        color: #28a745;
        font-weight: bold;
        margin: 10px 0;
        background-color: #d4edda;
        padding: 8px;
        border: 1px solid #c3e6cb;
        border-radius: 4px;
    }

    .error {
        color: #d33;
        font-weight: bold;
        margin: 10px 0;
        background-color: #f8d7da;
        padding: 8px;
        border: 1px solid #f5c6cb;
        border-radius: 4px;
    }

    .btn-zurueck, .btn-abbrechen {
        display: inline-block;
        padding: 8px 16px;
        margin-top: 8px;
        background-color: #d0d0d0;
   
        text-decoration: none;
        border-radius: 4px;
        transition: background-color 0.3s ease;
    }

    .btn-zurueck:hover, .btn-abbrechen:hover {
        background-color: #acaaaa;
    }

    h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    p {
        margin: 6px 0;
    }

/* iPhone und ähnliche Geräte */
@media (max-width: 480px) {
    .buchungsformular input[type="text"],
    .buchungsformular input[type="email"],
    .buchungsformular input[type="number"],
    .buchungsformular select {
        font-size: 16px;
        height: 40px;
        padding: 8px;
    }

    .buchungsformular button {
        font-size: 16px;
        padding: 10px;
    }

    .btn-zurueck, .btn-abbrechen {
        font-size: 16px;
        padding: 10px;
    }

    .success, .error {
        font-size: 16px;
        padding: 8px;
    }

    h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    ul.buchungs-info {
        font-size: 16px;
    }

    ul.buchungs-info li {
        margin: 4px 0;
    }
}

/* Footer immer am unteren Rand fixiert */
.sticky-footer {
    margin-top: auto;
}

footer p {
    margin: 0;
    font-size: 14px;
}

/* errors/style.css */


.error-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border-radius: 12px;
}

.error-container h1 {
  font-size: 96px;
  color: #d32f2f;
  margin-bottom: 20px;
}

.error-container p {
  font-size: 18px;
  margin-bottom: 30px;
}
/* FOOTER*/
.footer-columns {
    display: flex;
    justify-content: flex-start; /* Kontakt linksbündig */
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
   
    white-space: nowrap;
    padding: 0 6rem;
}

/*RECHTE SPALTE*/

.footer-col-rechts {
     text-align: left;
    /* flex: 0 0 300px; */
    max-width: 300px;
    overflow: hidden;
}

.footer-col-rechts h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #555;
    white-space: nowrap;
}

.footer-col-rechts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col-rechts ul li {
    margin-bottom: 0.3rem;
}

.footer-col-rechts a {
    color: #0066cc;
    text-decoration: none;
}

.footer-col-rechts a:hover {
    text-decoration: underline;
}
/*LINKE SPALTE*/

.footer-col-links {
    text-align: left;
    flex: 0 0 300px;
    max-width: 300px;
    overflow: hidden;
}

.footer-col-links h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #555;
    white-space: nowrap;
}

.footer-col-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col-links ul li {
    margin-bottom: 0.3rem;
}

.footer-col-links a {
    color: #0066cc;
    text-decoration: none;
}

.footer-col-links a:hover {
    text-decoration: underline;
}
.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    padding: 1rem;
}

/* 🔁 Responsive Design */
@media screen and (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .footer-col {
        flex: 1 1 100%;
        max-width: 100%;
        white-space: normal;
    }
}

.agb-checkbox {
    margin: 1rem 0;
    font-size: 1.1rem;
   }

.agb-checkbox label {
    display: inline-block;
    color: #000000;
}

.agb-checkbox a {
    color: #e86a0f;
    text-decoration: none;
}
