body {font-family: "Times New Roman", Georgia, Serif;}
h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display";
  letter-spacing: 5px;
}

.ww-container {
    position: relative;
    width: 300px;
}
.ww-container input {
    width: 100%;
    padding-right: 30px; /* ruimte voor het oog-icoon */
}
.ww-container .toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}
.code-container {
    background-color: #f4f4f4;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.code-title {
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    border-radius: 5px;
        }
		
.search-container {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 300px;
    margin-bottom: 20px;
}

.search-container input {
    width: 100%;
    padding-right: 50px;
    max-width: 300px;
}

.search-container button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    border: none;
    background: none;
    padding: 10px;
    cursor: pointer;
}

.search-container button:hover {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.filter-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid #4CAF50;
    border-radius: 25px;
    background-color: white;
    color: #4CAF50;
    text-align: center;
    margin-top: 10px;
    margin-right: 10px;
    transition: background-color 0.3s, color 0.3s;
}

.filter-btn.active {
    background-color: #4CAF50;
    color: white;
}
        
.close-btn {
    font-size: 2.5em;
    padding: 5px 20px;
    margin: 17px;
}

.close-btn:hover {
    background-color: white;
}
		
/* Standaardstijl voor grotere schermen */
.colspan {
    column-count: 3;
    column-gap: 30px;
    column-rule: 1px solid green;
    column-fill: balance;
}

/* Stijl voor tablets (breedte tussen 600px en 900px) */
@media (max-width: 900px) {
    .colspan {
        column-count: 2;
        column-gap: 20px;
        column-rule: 1px solid green;
        column-fill: balance;
    }
}

/* Stijl voor mobiele telefoons (breedte minder dan 600px) */
@media (max-width: 600px) {
    .colspan {
        column-count: 1;
        column-gap: 10px;
        column-rule: 1px solid green;
        column-fill: balance;
    }
}


