.custom-select {
    position: relative;
    width: 300px;
    font-family: Arial, sans-serif;
    height:auto;
}

/* Selected item */
.select-selected {
    background-color: #f0f0f0;
    border: 1px solid #aaa;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.select-selected img {
    width: 130px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

/* Dropdown items container */
.select-items {
    position: absolute;
    background-color: white;
    border: 1px solid #aaa;
    border-top: none;
    width: 100%;
    max-height: 250px;
    overflow-y: auto;
    z-index: 99;
    display: none;
}

/* Each item */
.select-items div {
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.select-items div:hover {
    background-color: #ddd;
}

.select-items img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}