.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;
}
