hr {
    border: none;
    margin: 0 auto;
    display: block;
    max-width: 90%;
}

button.knop {
    background-color: #FFA500;
    color: white;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 22px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

button.knop:hover {
    background-color: #e69500;
    transform: scale(1.05);
}

.button-container {
    text-align: center;
    margin: 30px 0;
}

.beschrijving {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.beschrijving p {
    margin-bottom: 1em;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

.beschrijving strong {
    font-size: 1.3rem;
    color: #8c281a;
    display: block;
    margin-bottom: 0.5em;
}

.beschrijving h2 {
    color: #8c281a;
    font-size: 1.5rem;
    margin: 1.5em 0 0.5em;
    text-align: center;
}

.beschrijving h3 {
    font-size: 1.1rem;
    margin: 0.5em 0;
    color: #555;
}

.beschrijving hr {
    margin: 1.5em auto;
    border: none;
    height: 3px;
    background: #8c281a;
    max-width: 80%;
}

.beschrijving em {
    color: #666;
    font-style: italic;
}

.schema-tabel {
    width: 100%;
    max-width: 700px;
    margin: 1.5em auto;
    border-collapse: collapse;
    background: rgba(255,255,255,0.6);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.schema-tabel th {
    background: #8c281a;
    color: #fff;
    font-size: 1.05rem;
    padding: 12px 10px;
    text-align: center;
    width: 50%;
}

.schema-tabel td {
    padding: 8px 12px;
    font-size: 1rem;
    border-bottom: 1px solid #ddd;
    vertical-align: top;
}

.schema-tabel tr:last-child td {
    border-bottom: none;
}

.schema-tabel .richting {
    color: #555;
    font-size: 0.85rem;
}

.schema-tabel .tijd {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: #8c281a;
    font-size: 1.1rem;
}

.schema-tabel .notitie {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    padding: 10px 12px;
    text-align: center;
    background: rgba(140,40,26,0.05);
}

@media (max-width: 600px) {
    button.knop {
        font-size: 18px;
        padding: 10px 20px;
    }

    .beschrijving strong {
        font-size: 1.1rem;
    }

    .beschrijving h2 {
        font-size: 1.2rem;
    }
}