.image-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 10px 0;
}

.dropdown-button {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.dropdown-button img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    object-fit: cover;
    display: inline-block;
}

.dropdown-button .caret {
    margin-left: 10px;
    font-size: 12px;
    color: #333;
}

.dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    z-index: 10;
    display: none;
    max-height: 300px;
    overflow-y: auto;
}

.dropdown-item {
    padding: 8px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background: #f7f7f7;
}

.dropdown-item img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    object-fit: cover;
    display: inline-block;
}