.gf-comparator-wrapper {
    background: #111;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    max-width: 900px;
    margin: 0 auto;
}

/* Recherche */
.gf-search-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.gf-fighter-input { flex: 1; }
.gf-fighter-input input {
    width: 100%;
    padding: 15px;
    background: #222;
    border: 1px solid #444;
    color: #fff;
    font-size: 16px;
    border-radius: 4px;
}
.gf-vs-badge {
    background: #d20a0a;
    color: #fff;
    font-weight: bold;
    padding: 10px;
    border-radius: 50%;
    margin: 0 15px;
    font-size: 12px;
}

/* Bouton */
.gf-btn {
    width: 100%;
    padding: 15px;
    background: #d20a0a;
    color: white;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}
.gf-btn:disabled { background: #444; cursor: not-allowed; }
.gf-btn:hover:not(:disabled) { background: #ff1e1e; }

/* Prédiction */
.gf-prediction-box {
    margin-top: 30px;
    text-align: center;
    background: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #333;
}
.gf-prediction-bar-container {
    display: flex;
    height: 30px;
    background: #333;
    border-radius: 15px;
    overflow: hidden;
    margin: 15px 0;
}
.gf-pred-bar { height: 100%; transition: width 1s ease-in-out; }
#gf-pred-bar-a { background: #3b82f6; } /* Bleu */
#gf-pred-bar-b { background: #ef4444; } /* Rouge */

.gf-prediction-text { font-size: 20px; font-weight: bold; margin-top: 10px; }

/* Grille des stats */
.gf-stats-grid {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    align-items: flex-start;
}
.gf-fighter-card {
    flex: 1;
    text-align: center;
    min-width: 200px;
}
.gf-chart-container {
    flex: 1.5;
    min-width: 300px;
    padding: 0 10px;
}
.gf-name { color: #d20a0a; font-size: 24px; text-transform: uppercase; margin-bottom: 5px; }
.gf-score { font-size: 14px; color: #888; margin-bottom: 15px; }
.gf-score .val { color: #fff; font-weight: bold; }

.gf-specs { list-style: none; padding: 0; text-align: left; display: inline-block; }
.gf-specs li { margin-bottom: 8px; font-size: 14px; border-bottom: 1px solid #333; padding-bottom: 4px; }
.gf-specs strong { color: #ccc; }

/* UI Autocomplete Overrides (pour que ça soit joli sur fond noir) */
.ui-autocomplete { background: #222; border: 1px solid #444; color: #fff; max-height: 200px; overflow-y: auto; overflow-x: hidden; }
.ui-menu-item-wrapper { padding: 10px; }
.ui-state-active { background: #d20a0a !important; color: #fff !important; border: none !important; }