.db-599e078f-wrapper {
    position: relative;
    display: inline-block;
}

.db-599e078f-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    font-weight: 500;
}

.db-599e078f-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.db-599e078f-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

/* Caret rotation when open or hovered */
.db-599e078f-wrapper.is-open .db-599e078f-icon,
.db-599e078f-wrapper:hover .db-599e078f-icon {
    transform: rotate(180deg) !important;
}

.db-599e078f-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    min-width: 100%;
    width: max-content;
    max-width: 300px;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    
    /* Smooth CSS hover transition triggers */
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(10px) !important;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s !important;
    pointer-events: none;
}

/* Clear gap drop-off on hovers */
.db-599e078f-wrapper::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
    display: block;
    z-index: 998;
}

/* Show transition active */
.db-599e078f-wrapper.is-open .db-599e078f-menu,
.db-599e078f-wrapper:hover .db-599e078f-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    display: block !important;
}

.db-599e078f-item {
    display: block;
    width: 100%;
    clear: both;
    text-align: inherit;
    white-space: nowrap;
    text-decoration: none;
    box-sizing: border-box;
    transition: background-color 0.2s, color 0.2s;
}
