#ham-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
}
.btnHamburger {  
    border: solid 1px rgb(190, 190, 190);
    border-radius: 6px;;
}
.btnHamburger:hover{
    background-color:rgb(210, 210, 210);
}
#ham-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 6px);
    background: rgb(210, 210, 210);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    padding: 10px 0;
    min-width: 200px;
}

#ham-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#ham-menu li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.05rem;
    color: #333;
}

#ham-menu li a:hover {
    background: #f0f0f0;
}
