/* Container principal */
.grb-box {
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    background: linear-gradient(145deg, #f9f9f9, #e6e6e6);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-family: "Arial", sans-serif;
}

/* Note globale */
.grb-rating {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    text-align: center;
}

/* Colonnes + Points forts / Points faibles */
.grb-columns {
    display: flex;
    gap: 25px;
    justify-content: space-between;
}

.grb-pros, .grb-cons {
    flex: 1;
    padding: 20px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.grb-pros:hover, .grb-cons:hover {
    transform: translateY(-3px);
}

/* Couleurs */
.grb-pros {
    border-left: 6px solid #2ecc71;
}
.grb-cons {
    border-left: 6px solid #e74c3c;
}

/* Titres */
.grb-box h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
    color: #333;
}

/* Listes + symboles */
.grb-pros ul li::before {
    content: "✔️ ";
}
.grb-cons ul li::before {
    content: "❌ ";
}

/* Résumé / Conclusion */
.grb-summary {
    margin-top: 25px;
    padding: 20px;
    border-left: 6px solid #3498db;
    background: #f0f8ff;
    border-radius: 12px;
}

.grb-summary h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
    color: #1a5276;
}

/* Shortcode field (readonly) */
.grb-box input[readonly] {
    font-family: monospace;
    font-size: 14px;
    cursor: pointer;
}

/* Responsive */
@media(max-width: 768px) {
    .grb-columns {
        flex-direction: column;
    }
}