.produit-participants-fields { margin: 30px 0; 
    padding: 20px; 
    background: #f9f9f9;
    border: 1px solid #ddd; 
    border-radius: 5px;
}
.participant-group { background: white;
padding: 15px;
margin: 15px 0;
border: 1px solid #ddd;
border-radius: 5px;
 }
.participant-fields { 
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px; 
}
.form-row label { 
display: block;
 margin-bottom: 5px;
 font-weight: bold; 
}
.form-row input { 
    width: 100%; 
    padding: 8px; 
    border: 1px solid #ddd; 
    border-radius: 4px; 
}
.participants-buttons { 
    text-align: center; 
    margin-top: 15px; 
}
#add_participant_produit { 
    background: #4CAF50; 
    color: white; 
}
#remove_participant_produit { 
    background: #f44336; 
    color: white; 
}
@media (max-width: 768px) { 
    .participant-fields { 
        grid-template-columns: 1fr; 
    } 
}

.wc-block-components-product-details {
  display: flex;
  flex-direction: column;
}