/**
 * Amélioration de l'affichage de la personnalisation dans le panier
 */

/* Style pour le texte de personnalisation dans la modal */
.customization-modal .modal-body .value {
    white-space: pre-wrap !important;
    font-family: 'Courier New', monospace;
    background-color: #000000;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    line-height: 1.8;
    font-size: 14px;
    max-height: 600px;
    overflow-y: auto;
}

/* Style pour les emojis */
.customization-modal .modal-body .value {
    font-size: 15px;
}

/* Bouton de personnalisation */
.product-line-info a[data-toggle="modal"] {
    display: inline-block;
    padding: 5px 15px;
    background-color: #000000;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.product-line-info a[data-toggle="modal"]:hover {
    background-color: #000000;
    text-decoration: none;
    color: white;
}

/* Modal de personnalisation */
.customization-modal .modal-content {
    border-radius: 0px;
    border: none;
}

.customization-modal .modal-header {
    background-color: #000000;
    color: white;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.customization-modal .modal-header .close {
    color: white;
    opacity: 1;
}

.customization-modal .modal-title {
    font-size: 18px;
    font-weight: 600;
}
