
.ebd-wrapper {
    position: relative;
    display: inline-block;
}
.ebd-button {
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}
.ebd-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    min-width: 180px;
}
.ebd-wrapper:hover .ebd-dropdown {
    display: block;
}
.ebd-dropdown-item {
    padding: 10px 15px;
    display: block;
    text-decoration: none;
    color: #333;
}
.ebd-dropdown-item:hover {
    background: #f0f0f0;
}
