/* SECTION: TERMINE */
.termine-section {
    background-color: #e7e6e6;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

#termine {
    scroll-margin-top: 260px; /* Höhe von Header + Navbar */
}

.termine-container {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.termine-container h2 {
    font-size: 2.2rem;
    color: green;
    text-shadow: 1px 1px black;
    margin-bottom: 20px;
}

.termine-hinweis {
    font-size: 1rem;
    font-weight: bold;
    color: #aa0000;
    margin: 5px 0;
}

/* Tabelle */
.termine-tabelle {
    width: 100%;
    margin-top: 30px;
    overflow-x: auto;
}

.termine-tabelle table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.termine-tabelle thead {
    background-color: #444;
    color: #fff;
}

.termine-tabelle th,
.termine-tabelle td {
    padding: 12px;
    border: 1px solid #ccc;
    text-align: center;
}

.termine-tabelle tbody tr:hover {
    background-color: #b18686;
    transition: background 0.2s ease-in-out;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .termine-container h2 {
        font-size: 1.6rem;
    }

    .termine-hinweis {
        font-size: 0.95rem;
    }

    .termine-tabelle table {
        font-size: 0.95rem;
    }
}

@media (max-width: 400px) {
    .termine-container h2 {
        font-size: 1.4rem;
    }

    .termine-hinweis {
        font-size: 0.85rem;
    }

    .termine-tabelle table {
        font-size: 0.9rem;
    }
}

@media (max-width: 380px) {
    .termine-container h2 {
        font-size: 1rem;
    }

    .termine-hinweis {
        font-size: 0.5rem;
    }

    .termine-tabelle table {
        font-size: 0.7rem;
    }
}
