.editor-post-title__block {
    display: flex;
    align-items: center;
    gap: 12px;
}

.editor-post-title__block::before {
    content: "Titre";
    font-weight: 600;
    flex-shrink: 0;
}

label{
      display:flex;
                align-items:center;
                gap:10px;
                margin-bottom:10px;
}

.custom-looks-product-search{
    padding-bottom:20px ;
    
}


/*Product results container*/

.custom-looks-product-results {
    max-height: 300px;
    overflow-y: auto;
    padding:10px;
    border:1px solid #888;
    border-radius:5px;
}

/* Scrollbar width */
.custom-looks-product-results::-webkit-scrollbar {
    width: 8px;
}

/* Scrollbar track */
.custom-looks-product-results::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

/* Scrollbar thumb */
.custom-looks-product-results::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

/* Thumb on hover */
.custom-looks-product-results::-webkit-scrollbar-thumb:hover {
    background: #555;
}


.custom-looks-product-thumbnail{
    width:75px;
    height:75px;
    min-height:75px;
    max-height:75px;
    border-radius:3px;
    fit-content:contain;
}

.custom-looks-product-name{
    font-size:14px;
}

.custom-looks-selected-product{
    display:flex;
    flex-direction: column;
    align-items:center;
    gap:10px;
    margin-bottom:10px;

}

.custom-looks-selected-product-name{
    font-size:14px;
}

#custom-looks-selected-products{
    gap:20px;
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
}

.custom-looks-remove-product{
    text-decoration: underline;
    color:red;
    background:none;
    border:none !important;
}

.custom-looks-product-search{
    width:100% !important;
}