/* Basisstijl */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    align-items: flex-start;
    background-color: #f9f9f9;
}

.container {
    padding: 20px;
    max-width: 900px;
    /* Max breedte van 900px */
    margin: 0 auto;
    /* Centeren van de container */
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Optionele schaduw voor betere visuele scheiding */
    margin-bottom: 50px;
    /* 50px ruimte onderaan */
}

.header {
    text-align: center;
}

.header h1 {
    font-size: 2rem;
    margin: 0;
}

.header h2 {
    font-size: 1.2rem;
    color: #555;
}

/* Maak de afbeelding responsive */
.header-image {
    max-width: 100%;
    height: auto;
}

/* Table styling */
.schenking-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.schenking-table th,
.schenking-table td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
}

.schenking-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

/* Info Section */
.info-section {
    margin-top: 40px;
}

.info-section ul {
    list-style-type: disc;
    padding-left: 20px;
}

.info-section ul li {
    margin: 8px 0;
}

a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsiveness */
@media (max-width: 768px) {
    .header h1 {
        font-size: 1.8rem;
        /* Grotere tekst op kleinere schermen */
    }

    .header h2 {
        font-size: 1.1rem;
        /* Grotere tekst op kleinere schermen */
    }

    .schenking-table th,
    .schenking-table td {
        padding: 8px;
        font-size: 1rem;
        /* Grotere tekst in de tabel */
    }

    .info-section ul {
        padding-left: 10px;
    }

    .info-section ul li {
        font-size: 1rem;
        /* Grotere tekst in de lijst */
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.6rem;
        /* Nog grotere tekst op kleinere schermen */
    }

    .header h2 {
        font-size: 1rem;
        /* Nog grotere tekst op kleinere schermen */
    }

    .schenking-table th,
    .schenking-table td {
        padding: 6px;
        font-size: 1rem;
        /* Grotere tekst in de tabel */
    }

    .info-section ul {
        padding-left: 8px;
    }

    .info-section ul li {
        font-size: 1rem;
        /* Grotere tekst in de lijst */
    }
}