.icon-select { position: relative; width: 100%; }

.icon-select__control {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 6px 10px;
    cursor: pointer;
    background: #fff;
}

.icon-select__control img {
    width: 20px;
    height: 20px;
    object-fit: cover;
}

.icon-select__dropdown {
    position: absolute;
    z-index: 1050;
    width: 100%;
    max-height: 240px;
    overflow-y: auto;
    border: 1px solid #d1d5db;
    background: #fff;
    border-radius: 6px;
    margin-top: 4px;
}

.icon-select__option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    cursor: pointer;
}

.icon-select__option:hover {
    background: #f3f4f6;
}

.icon-select__option img {
    width: 20px;
    height: 20px;
}

.arrow { margin-left: auto; }
