




/* Cover */

.cover-body {
    color: #262861;
    
}


.cover-container {
    max-width: 42em;
  }

/* tables app */

    .scherm {
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }
    
    button {
        margin: 10px;
        padding: 10px;
        font-size: 16px;
    }

    .column {
        float: left;
        width: 50%; /* Elke kolom neemt de helft van de breedte van de container in */
        box-sizing: border-box;
        padding: 5px; /* Ruimte binnen elke kolom */
    }
    
    /* Zorg ervoor dat na de kolommen de layout weer normaal verloopt */
    #tafel-keuzes:after {
        content: "";
        display: table;
        clear: both;
    }
    
    label {
        display: block; /* Zorgt ervoor dat elk label op een nieuwe lijn begint */
        margin-bottom: 10px; /* Ruimte tussen de opties */
    }

    @media screen and (min-width: 800px) {
        .container {
          max-width: 50%!important;
        }
      }
    