
.custom-select-wrapper {
    position: relative;
    display: inline-block;
    user-select: none;
    width: 100%;
}

.custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
}

.custom-select-trigger {
    position: relative;
    display: block;
    width: 100%;
    padding: 10px;
    background: #f6f5f2;
    border: 1px solid #f6f5f2;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    cursor: pointer;
    color: #333;
}

/* .custom-select-trigger:after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #333;
} */

.custom-options {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    background: #f6f5f2;
    border: 1px solid #ccc;
    border-top: 0;
    border-radius: 0 0 4px 4px;
    z-index: 100;
}

.custom-option {
    display: block;
    padding: 10px;
    color: #333;
    cursor: pointer;
}

.custom-option:hover {
    background-color: #f5f5f5;
}

.custom-option.selected {
    background-color: #f5f5f5;
}

.custom-select.open .custom-options {
    display: block;
}

.custom-select.open .custom-select-trigger:after {
    transform: translateY(-50%) rotate(180deg);
}

.arrow {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #333;
    transition: all 0.3s ease;
}

.custom-select.open .arrow {
    transform: translateY(-50%) rotate(180deg);
}
