.icon-picker-wrapper {
    position: relative;
    max-width: 300px;
}

.icon-search {
    width: 100%;
    padding: 8px;
    padding-right: 40px;
}

.selected-icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.icon-picker-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
    gap: 8px;
    padding: 10px;
}

.icon-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.icon-option:hover {
    background-color: #f0f0f0;
}

.icon-option.selected {
    background-color: #e0e0e0;
    border-color: #999;
}