.pum-wrapper-ffa5bd5c {
    position: relative;
    display: inline-block;
    text-align: left; /* Reset internal alignment */
}
.pum-btn-ffa5bd5c {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background-color: transparent;
    color: #333;
    border: none;
    cursor: pointer;
    font-size: 24px;
    transition: transform 0.1s ease, opacity 0.2s ease;
}
.pum-btn-ffa5bd5c:active {
    transform: scale(0.9);
    opacity: 0.8;
}
.pum-btn-ffa5bd5c svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
    transition: opacity 0.3s ease;
}
.pum-btn-ffa5bd5c i {
    transition: opacity 0.3s ease;
}
.pum-dropdown-ffa5bd5c {
    position: absolute;
    top: 100%;
    right: 0; /* Open to the left */
    left: auto;
    margin-top: 10px;
    min-width: 150px; 
    background-color: rgba(255, 255, 255, 0.4); /* Made much more transparent globally */
    backdrop-filter: blur(8px); /* Increased blur for legibility with high transparency */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
}

@media (max-width: 767px) {
    .pum-dropdown-ffa5bd5c {
        min-width: 100px; /* Made even narrower for mobile */
        background-color: rgba(255, 255, 255, 0.3); /* Even more transparent for mobile */
    }
}

.pum-wrapper-ffa5bd5c.is-open .pum-dropdown-ffa5bd5c {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.pum-list-ffa5bd5c {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}
.pum-item-ffa5bd5c a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
    text-align: left;
}
.pum-item-ffa5bd5c a:hover {
    background-color: rgba(0, 0, 0, 0.05); /* Adjusted hover color for transparent bg */
}