/* Main container styling */
.acties-container {
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgb(246, 250, 252);
    width: 350px;
    padding-top: 20px;
    padding-bottom: 20px;
    border: 2px solid lightblue;
    border-radius: 20px;
}

/* Styling for each item in the list */
.actie-item p {
    text-align: center;
}

.acties-lijst {
    list-style: none;
    padding: 0;
    margin: 0;
}

.actie-item {
    padding: 10px 20px 0px 20px;
    height: 35px;
}

/* Heading styling within items */
.actie-item h2 {
    margin: 0 0 10px;
    font-size: 1.5em;
    text-align: center;
}

.actie-item p {
    margin: 0 0 10px;
    text-align: center;
}

/* Description styling within items */
.actie-item .actie-beschrijving {
    margin-top: 10px;
    text-align: center;
}

/* Adds a bottom border except for the last item */
.actie-item:not(:last-child) {
    border-bottom: 1px solid lightgrey;
}

/* Hide the H1 element */
h1 {
    display: none;
}

/* Hide spacer blocks */
.wp-block-spacer {
    display: none;
}