
.select-items {
    display: none;
    position: absolute;
    width: 100%;
    background: white;
    border: 1px solid #ced4da;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
}

.select-items .option {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.select-items .option:hover {
    background-color: #f1f1f1;
}

.select-items .option img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.select-box span {
    font-size: 16px;
}
