.schnik-game-container.schnik-mchat {
    background: #f9f9f9;
    border: 1px solid #e1e1e1;
    padding: 15px;
    margin: 10px auto;
    border-radius: 6px;
    text-align: center;
    max-width: 600px;
}

/* GIF Button */
.schnik-gif-start {
    cursor: pointer;
    display: inline-block;
    margin-bottom: 10px;
    transition: transform 0.2s;
}
.schnik-gif-start:hover {
    transform: scale(1.04);
}
.schnik-gif-start img {
    max-width: 120px;
    height: auto;
    border-radius: 4px;
}
.gif-hint {
    font-size: 0.85em;
    color: #666;
    margin: 3px 0 0 0;
    font-weight: bold;
}

/* Texte */
.schnik-mchat h3 {
    font-size: 1.15em;
    margin: 5px 0;
    color: #333;
}
.schnik-versus-info {
    font-size: 0.95em;
    color: #555555;
    margin: 5px 0 15px 0;
    font-style: italic;
}

/* Auswahl-Buttons */
.game-btn-submit {
    display: block;
    background: #ffffff !important;
    border: 1px solid #cccccc !important;
    padding: 10px 5px !important;
    border-radius: 5px !important;
    color: #333333 !important;
    width: 100% !important;
    box-sizing: border-box;
    transition: background 0.2s, border-color 0.2s, transform 0.1s;
}
.game-btn-submit:hover {
    background: #eaf4ff !important;
    border-color: #105289 !important;
    transform: scale(1.03);
}

/* Ergebnisboxen */
.game-result-box {
    padding: 12px;
    margin: 10px 0 15px 0;
    border-radius: 4px;
    font-size: 0.95em;
    display: block !important;
}
.game-result-box.schnik-win {
    background: #e2f0d9;
    border: 1px solid #b4c6e7;
    color: #385723;
}
.game-result-box.schnik-lose {
    background: #fce4d6;
    border: 1px solid #f8cbad;
    color: #c65911;
}
.game-result-box.schnik-draw {
    background: #fff2cc;
    border: 1px solid #ffe699;
    color: #7f6000;
}

/* Neustart-Button */
.game-reset-btn-submit {
    display: inline-block !important;
    visibility: visible !important;
    background: #ffffff !important;
    border: 1px solid #999999 !important;
    padding: 6px 14px !important;
    border-radius: 4px !important;
    color: #444444 !important;
    font-size: 0.9em !important;
    font-weight: bold !important;
    cursor: pointer !important;
    margin: 10px auto 5px auto !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: background 0.2s, color 0.2s;
}
.game-reset-btn-submit:hover {
    background: #105289 !important;
    border-color: #105289 !important;
    color: #ffffff !important;
}
/* --- PERFEKTE MITTELGRÖSSE FÜR KLAUS --- */
#schnik-last-result-box {
    max-width: 350px !important;    /* Angenehme, mittlere Breite */
    padding: 12px 18px !important;  /* Schöner, sauberer Abstand im Kasten */
    font-size: 1.1em !important;    /* Gut lesbare Hauptschrift für das Ergebnis */
    line-height: 1.4 !important;    /* Ordentlicher Zeilenabstand */
    border-width: 2px !important;   /* Klarer, deutlicher Rahmen */
    box-shadow: 0 3px 6px rgba(0,0,0,0.05) !important; /* Minimaler Schatten */
}

/* Macht die kleinen Zusatztexte im Span-Tag etwas deutlicher */
#schnik-last-result-box span {
    font-size: 1.0em !important;
}

/* Macht den Talerstand und die Siege/Niederlagen im Strong-Tag gut lesbar, aber nicht übertrieben */
#schnik-last-result-box strong {
    font-size: 1.15em !important;
}

/* Regelt den Trennstrich (hr) zwischen Ergebnis und Statistik */
#schnik-last-result-box hr {
    margin: 10px 0 !important;
    border-top: 1px solid rgba(0,0,0,0.1) !important;
}
/* --- AUTOMATISCHE SPIELERKLÄRUNGEN FÜR KLAUS --- */

/* Wenn der User gewinnt (Grüne Box) */
.game-result-box.schnik-win::after {
    content: "Du hast den Bot geschlagen!";
    display: block;
    font-size: 0.9em !important;
    font-style: italic;
    font-weight: normal;
    color: #2e7d32;
    margin-top: 8px;
    border-top: 1px dashed rgba(0,0,0,0.1);
    padding-top: 6px;
}

/* Wenn der User verliert (Rote Box) */
.game-result-box.schnik-lose::after {
    content: "Der Bot hatte die bessere Wahl!";
    display: block;
    font-size: 0.9em !important;
    font-style: italic;
    font-weight: normal;
    color: #c62828;
    margin-top: 8px;
    border-top: 1px dashed rgba(0,0,0,0.1);
    padding-top: 6px;
}

/* Wenn es ein Unentschieden ist (Graue Box) */
.game-result-box.schnik-draw::after {
    content: "Gleiches Symbol! Niemand kriegt Punkte.";
    display: block;
    font-size: 0.9em !important;
    font-style: italic;
    font-weight: normal;
    color: #555555;
    margin-top: 8px;
    border-top: 1px dashed rgba(0,0,0,0.1);
    padding-top: 6px;
}