#loader {
    display: none;

    background-color: rgba(22, 65, 148, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

#spinner {
    position: absolute;
                  left: 50%;
                  top: 50%;
                  width: 150px;
                  height: 150px;
                  margin: -75px 0 0 -75px;
                  border: 16px solid #f3f3f3;
                  border-radius: 50%;
                  border-top: 16px solid #154194;
                  /*background-color: #666;*/
                  width: 120px;
                  height: 120px;
                  -webkit-animation: spin 2s linear infinite;
                  animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

input[type="text"] {
    width: 100%;
    max-width: 400px;
    padding: 5px;
    margin-bottom: 10px;
}

#wachtlijstsubmit{
    background-color: var(--overlay15);
    color: var(--secondary);
    padding: .75em 1.5em;
    border-radius: 2em;
    margin: 10px 0px;
    transition: .3s ease-in-out;
    text-transform: lowercase;
    /*border: 0px;*/
    border: 0.5px #154194 solid;
    cursor: pointer;
    font-size: 1em;
}

#wachtlijstsubmit:hover{
    background-color: var(--secondary);
    color: var(--white);
    opacity: 1;
}

#wachtlijstsubmit:disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
    opacity: 0.7;
}

#plaatsopwachtlijst input{
    background-color: transparent;
    outline: none;
    border: 0.5px #154194 solid;
    border-radius: 2em;
    width: 100%;
    padding: .75em 1.5em;
    margin: 10px 0px;
    color: #154194;
    font-family: var(--fontss);
    font-size: 1em;
    text-transform: lowercase;
}

#plaatsopwachtlijst label{
    outline: none;
    margin: 10px 0px;
    color: #154194;
    font-family: var(--fontss);
    font-size: 1em;
    font-weight: bold;
    display: block;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 8px;
    border: 1px solid #ccc;
}


#personDataTable {
    /*border: 0.5px #154194 solid;
    border-radius: 2em;
*/
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

#personDataTable thead tr {
    background-color: #154194;
    color: #ffffff;
    text-align: left;
}

#personDataTable th,
#personDataTable td {
    word-wrap: break-word;
    padding: 8px;
    border: 1px solid #ccc;
    text-align: left;
    padding: 12px 15px;
}

#personDataTable tbody tr {
    border-bottom: 1px solid #dddddd;
}

#personDataTable tbody tr:nth-of-type(even) {
    background-color: aliceblue;
}

#personDataTable tbody tr:last-of-type {
    border-bottom: 2px solid #154194;
}

#personDataTable tbody tr:hover {
    background-color: #c8dfe4;
    color: #154194;
}

.module-wachtlijst {
    overflow-x: auto;
}

.error{
    background-color: lightcoral;
    color: #4b1f1f;
    font-weight: bold;
}