.dropdown-options {
    background: white;
    border: 1px solid #ccc;
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10000;
}
.dropdown-options li {
    padding: 5px;
    cursor: pointer;
    margin: 5px 0; /* Add space between options */
}
.dropdown-options li:hover {
    background: #eee;
}
.select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}
.select-arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    background: #fff;
    border-left: 1px solid #ccc;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.select-arrow::after {
    content: '';
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000;
}
.select-wrapper input {
    width: calc(100% - 30px);
    padding-right: 30px;
}
