.topRight {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dropdownMenuToggle {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--icon-color);
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
}

.dropdownMenu {
    display: none;
    position: fixed;
    background-color: var(--nav-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    min-width: 160px;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    z-index: 200;
}

.dropdownMenu.open {
    display: flex;
}

.dropdownMenuItem {
    display: block;
    box-sizing: border-box;
    padding: 0.75rem 1rem 0.75rem 1.25rem;
    margin: 0;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: inherit;
    cursor: pointer;
    transition: background-color 0.2s;
    background: transparent;
    border: 0;
    border-radius: 0;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.dropdownMenuItem:hover {
    background-color: var(--border-color);
}

.dropdownMenuLabel {
    padding: 0.75rem 1rem 0.75rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    user-select: none;
}