/* ADMIN */
.veo-tab-content { background:#fff; padding:20px; border:1px solid #ccd0d4; border-top:none; }
#table-products img { background: #eee; border:1px solid #ddd; }

/* FRONT */
.veo-wrapper { max-width: 600px; margin: 0 auto; background: #f9f9f9; padding: 20px; border-radius: 8px; }
.veo-step h3 { margin-top: 0; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-weight: bold; margin-bottom: 5px; }
.form-group input[type="text"], .form-group input[type="email"], .form-group select { 
    width: 100%; padding: 8px; border: 1px solid #ccc; border-radius: 4px; 
}
.veo-error { border-color: red !important; }

/* Grid Produits */
.veo-product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 10px; }
.veo-product-item { cursor: pointer; border: 1px solid #ddd; border-radius: 4px; padding: 10px; text-align: center; background: #fff; }
.veo-product-item:hover { border-color: #333; }
.veo-product-item input { display: none; }
.veo-product-item input:checked + .veo-prod-visual { font-weight: bold; color: #0073aa; }
.veo-product-item input:checked + .veo-prod-visual img { border: 2px solid #0073aa; }
.veo-prod-visual img { max-width: 100%; height: auto; display: block; margin: 0 auto 5px; border-radius: 4px; }

.veo-btn { background: #333; color: #fff; border: none; padding: 10px 20px; cursor: pointer; border-radius: 4px; font-size: 16px; }
.veo-btn:hover { background: #555; }
.veo-success { text-align: center; font-size: 1.2em; color: green; padding: 40px; }

/* STEP 3 STYLES */
.veo-intro-box { background: #eef2f5; padding: 15px; border-radius: 4px; margin-bottom: 20px; border-left: 4px solid #ccc; }
.veo-highlight-box { background: #2c3e50; color: #fff; padding: 15px; border-radius: 4px; margin-bottom: 20px; }
.veo-highlight-box label { color: #fff; margin-bottom: 10px; display:block; }
.veo-highlight-box textarea { width: 100%; padding: 10px; border-radius: 4px; border:none; resize: vertical; }
.veo-radio-inline { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.veo-radio-inline label { margin: 0; display: inline-flex; align-items: center; gap: 6px; }

/* Stars Rating */
.veo-stars { display: flex; flex-direction: row-reverse; justify-content: flex-end; }
.veo-stars input { display: none; }
.veo-stars label { font-size: 30px; color: #ccc; cursor: pointer; line-height: 1; margin: 0 2px; }
.veo-stars input:checked ~ label,
.veo-stars label:hover,
.veo-stars label:hover ~ label { color: #ffca08; }
