.dmp-container-f2112575 {
    position: relative;
    display: inline-block;
}
.dmp-trigger-f2112575 {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    font-size: 16px;
}
.dmp-dropdown-f2112575 {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 150px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
.dmp-container-f2112575:hover .dmp-dropdown-f2112575,
.dmp-dropdown-f2112575.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dmp-dropdown-f2112575 li {
    margin: 0;
}
.dmp-dropdown-f2112575 a {
    display: block;
    padding: 8px 20px;
    color: #333;
    text-decoration: none;
}
.dmp-dropdown-f2112575 a:hover {
    background: #f5f5f5;
}