.hamburger-menu-container {
    position: relative;
    z-index: 50;
}

.hamburger-button {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    background: #fff;
    padding: 10px;
    border-radius: 20px;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: #5a5a5a;
    transition: all 0.3s ease;
}

.hamburger-button.active .hamburger-line:first-child {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-button.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-button.active .hamburger-line:last-child {
    transform: translateY(-9px) rotate(-45deg);
}

.menu-content {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    background-color: white;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.25rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.menu-content.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-item {
    padding: 0.75rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-item:hover {
    background-color: #f4f6fa;
}

.menu-divider {
    height: 1px;
    background-color: #e8e8e8;
    margin: 0.5rem 0;
}

@media (max-width: 640px) {
    .menu-content {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        margin: 0;
        border-radius: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        height: auto;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
}
