﻿/* Conteneur principal */
.designer .select_image {
    position: absolute;
    top:5px;
    left:5px;
    width: 32px;
    font-family: sans-serif;
}

/* La partie cliquable qui affiche l'image choisie */
.designer .select_trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    background-color: #fff;
}

    .designer .select_trigger img {
        width: 32px; /* Taille de l'image principale */
        height: 32px;
        object-fit: cover;
    }

/* La petite flèche du select */
.designer .arrow {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #333;
    transition: transform 0.2s ease;
}

/* La liste déroulante des options */
.designer .select_options {
    display: none; /* Cachée par défaut */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    background-color: #fff;
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
}

/* Chaque option dans la liste */
.designer .select_option {
    padding: 1px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .designer .select_option:hover {
        background-color: #f0f0f0;
    }

    .designer .select_option img {
        width: 100%; /* Les images prennent toute la largeur de l'option */
        height: auto;
    }

/* Classe 'open' pour afficher la liste et tourner la flèche */
.designer .select_image.open .select_options {
    display: block;
}

.designer .select_image.open .arrow {
    transform: rotate(180deg);
}
