#hamburgerMenu {
    display: none;
    position: absolute;
    top: 2.5rem;
    left: 0;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
    padding: 0.5rem;
    z-index: 1001;
}

#hamburgerWrapper {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1000;
}

#hamburgerikon {
    cursor: pointer;
    color: #0038b8;
}

#hamburgerikon:hover {
    color: #0056d2;
}

#hamburgerMenu button {
    width: 100%;
    text-align: left;
    padding: 0.5rem;
    border: none;
    background: none;
    color: #333;
}

#hamburgerMenu button:hover {
    background: #f0f0f0;
}

#hamburgerMenu button:focus {
    outline: none;
    background: #e0e0e0;
}