.custom-dropdown {
    position: relative;
    display: inline-block;
    left: -15px;
}

.selected-option {
    padding: 5px;
    border: 1px solid white;
    border-radius: 5px;
    background-color: transparent;
    color: white;
    cursor: pointer;
}

.dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    background-color: black;
    border: 1px solid black;
    border-top: none;
    border-radius: 0 0 5px 5px;
}

.dropdown-item {
    padding: 5px;
    color: white;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #8d0df3;
}

.show {
    display: block;
}