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

body {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
  }

h1 {
    font-weight:bolder;
    font-size: 36px;
}

/* Voorkom dat de link van kleur verandert na aanklikken */
a:link,
a:visited {
  color: inherit; /* behoud de oorspronkelijke kleur */
}


.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    justify-content: flex-start;
    align-items: center;
}

.block {
    width: 150px;
    height: 150px; /* Adjust height to accommodate text */
    /* background-color: #3498db; */
    border-radius: 10px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: white;
    text-align: center;
    text-decoration: none; /* Remove underline from the link */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease-in-out;
}

.icon {
    font-size: 36px;
    margin-bottom: 10px;
}

fieldset {
    border-radius: 12px;
    box-shadow: 0 0 10px #666;
    margin-bottom: 20px;
}

legend {
    padding: 4px 8px;
    background: #fff;
    font-size: 28px;
    font-weight: bolder;
    /* For better legibility against the box-shadow */
  }

  /* Reset standaard marges en padding */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
  }
  
  /* Stijl voor de header */
  .sticky-header {
    position: sticky;
    top: 0;
    color: #fff;
    height: 25px;
    border-bottom: 1px solid white;
    box-shadow: 0 0 10px #666;
    padding: 15px;
  }
  
  /* Stijl voor de pagina-inhoud */
  main {
    padding: 20px;
  }

  /* Stijl voor test tabel */
/* Algemene opmaak voor de tabel */
table {
    margin-top: 20px;
    border-collapse: collapse;
    width: 100%;
  }
  
  /* Opmaak voor de cellen in de tabel */
  td, th {
    border: 1px solid #ccc; /* Dunne lijnen */
    padding: 8px;
    text-align: center; /* Horizontaal gecentreerd */
  }
  
  /* Opmaak voor de cellen in de header rij */
  th {
    border: none; /* Geen buitenlijnen voor header cellen */
    border-bottom: 2px solid #000; /* Dikkere lijn onder de header */
  }
  
  /* Verticale uitlijning van de tekst in cellen */
  td {
    vertical-align: top; /* Tekst bovenaan in de cel */
  }
  
  /* Verwijder de onderste border van de laatste rij */
  tr:last-child td {
    border-bottom: none;
  }
  
          /* Stijl voor de overlay-achtergrond */
          .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 9999;
        }

        /* Stijl voor de lightbox */
        .lightbox-reorder {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 700px;
            height: 500px;
            background-color: white;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            z-index: 10000;
        }

        #drop_file_zone {
            background-color: #EEE;
            border: #999 5px dashed;
            width: 290px;
            height: 200px;
            padding: 8px;
            font-size: 18px;
        }
        #drag_upload_file {
          width:75%;
          margin:20px auto;
        }
        #drag_upload_file p {
          text-align: center;
        }
        #drag_upload_file #selectfile {
          display: none;
        }

        .tooltip {
          position: relative;
          display: inline-block;
        }
        
        .tooltip .tooltiptext {
          visibility: hidden;
          width: 400px;
          background-color: black;
          color: #fff;
          text-align: center;
          border-radius: 6px;
          padding: 5px 0;
          
          /* Position the tooltip */
          position: absolute;
          z-index: 1;
          top: -5px;
          right: 105%;
        }
        
        .tooltip:hover .tooltiptext {
          visibility: visible;
        }     

        #corners {
          border-radius: 8px;
          color: #fff;
          background: #000;
          padding: 5px;
          font-size: 10px;
        } 