.woo-custom-field-wrapper {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 5px;
}

.woo-custom-field-wrapper label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.woo-custom-field-wrapper input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4;
    transition: border-color 0.3s ease;
}

.woo-custom-field-wrapper input[type="text"]:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 1px rgba(0, 124, 186, 0.2);
}

.woo-custom-field-wrapper input[type="text"]::placeholder {
    color: #999;
    font-style: italic;
}

/* Style pour l'affichage dans le panier */
.woocommerce-cart-item__data .woo-custom-field {
    margin-top: 5px;
    font-size: 0.9em;
    color: #666;
}

/* Style pour l'affichage dans les commandes (back-office) */
.woocommerce_order_items .woo-custom-field-value {
    background-color: #f0f8ff;
    padding: 5px 8px;
    border-radius: 3px;
    font-size: 0.9em;
    border-left: 3px solid #007cba;
}

/* Style pour l'affichage dans le panier */
.woo-custom-field-cart-display {
    background-color: #f8f9fa;
    padding: 8px 12px;
    border-radius: 4px;
    margin-top: 8px;
    border-left: 3px solid #28a745;
    font-size: 0.9em;
    color: #495057;
}

.woocommerce-cart-item__data .woo-custom-field {
    background-color: #e8f5e8;
    padding: 4px 8px;
    border-radius: 3px;
    margin-top: 4px;
    font-size: 0.85em;
    color: #155724;
    border-left: 2px solid #28a745;
}

/* Style pour les variations dans le panier */
.woocommerce-cart-item__data dt,
.woocommerce-cart-item__data dd {
    margin-bottom: 2px;
}

.woocommerce-cart-item__data dt.woo-custom-field-key {
    font-weight: 600;
    color: #28a745;
} 