.custom-select-wrapper {
    position: relative;
    display: inline-block;
    user-select: none;
    padding: 10px auto;
}

.custom-select {
    position: relative;
    cursor: pointer;
    width: 100%;
}

.custom-select-trigger {
    position: relative;
    display: block;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.custom-options {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.custom-option {
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.custom-option img {
    margin-right: 10px;
}

.custom-option:hover {
    background-color: #f2f2f2;
}

.open .custom-options {
    display: block;
}

.custom-select.open .custom-select-trigger {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
