.custom-select {
    position: relative;
    width: 250px;
}

.native-select {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.select-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border: 1px solid #ccc;
    cursor: pointer;
    background: #fff;
}

.select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    display: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
}

.select-options li {
    padding: 10px;
    cursor: pointer;
}

.select-options li:hover {
    background: #f2f2f2;
}

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

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