.IconGallery {
    overflow-x: hidden;
    overflow-y: auto;
    padding: 1rem;
    border: 1px solid var(--bs-border-color);

    @media (prefers-color-scheme: light) {
        background: #fafafa;
    }
    @media (prefers-color-scheme: dark) {
        background: var(--bs-body-bg);
    }
}

.IconGallery_expanded {
    /*height: 400px;*/
}

.IconGallery_collapsed {
    height: 116px;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;

    .IconGallery_header {
        display: none;
    }
}


.IconGallery_header {
    font-weight: bold;
    font-size: 32px;
    margin-top: 16px;
}

.IconGallery_item {
    margin: 3px;
    width: 64px;
    height: 64px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    padding: 2px;
    transition: border-color 0.2s ease;
}

.IconGallery_item:hover {
    border-color: rgba(13, 110, 253, 0.3);
}

.IconGallery_item_selected {
    border-color: #0d6efd !important;
    background-color: rgba(13, 110, 253, 0.1);
}
