#search-container {
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
}

#search-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #4a3e36; /* Kleur uit menu.css */
    padding: 5px;
    transition: color 0.3s ease;
}

#search-button:hover {
    color: #e5b263; /* Hover kleur uit menu.css */
}

/* Styling voor de nieuwe printknop */
#print-button {
    background-color: #f7e9c5;
    border: 1px solid #e5b263;
    color: #4a3e36;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

#print-button:hover {
    background-color: #e5b263;
}

#search-popup {
    display: none; /* Verbergt de balk standaard */
    width: 100%;
    padding: 10px 0;
    background-color: transparent; /* Geen extra achtergrond nodig in de sidebar */
}

/* Wanneer actief, wordt dit blok getoond en schuift het menu naar beneden */
#search-popup.active {
    display: block;
}

#searchInput {
    width: 100%;
    padding: 10px;
    border: 2px solid #e5b263; /* Matcht met de goudgele kleur */
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
    outline: none;
}