.x-selection_panel-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.x-selection-panel-thumbnails {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.x-selection-panel-thumbnail {
    margin: 8px;
    border-radius: 8px;
    padding: 3px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
    transition: all 0.2s ease;
    background: white;
    cursor: pointer;
}

.x-selection-panel-thumbnail-inner {
    border-radius: 5px;
    overflow: hidden;
}

.x-selection-panel-thumbnail:hover {
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
    transform: scale(1.02);
}

.x-selection-panel-thumbnail.x-selection-panel-thumbnail-active {
    background: #6567C9;
}
