/* ================= MOBILE CSS ================= */

.ts-bonus-card-mobile {
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.ts-bonus-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.ts-bonus-mobile-title {
    font-weight: 600;
    display: flex;
    gap: 6px;
    font-size: 0.95rem;
}

.ts-bonus-mobile-points {
    font-size: 0.75rem;
    background: #eef2f7;
    padding: 4px 8px;
    border-radius: 6px;
}

/* Eigene Antwort (oben im Edit-Modus) */
.ts-bonus-mobile-answer {
    margin-top: 8px;
    font-size: 0.85rem;
    padding: 6px 8px;
    border-radius: 6px;
    background: #eef2f7;
    color: #333;
}

/* Richtig */
.ts-bonus-mobile-row.correct .ts-bonus-mobile-answer {
    background: #e9f7ef;
    color: #198754;
}

/* Falsch */
.ts-bonus-mobile-row.wrong .ts-bonus-mobile-answer {
    background: #fdecea;
    color: #dc3545;
}

/* ================= LIST ================= */

.ts-bonus-mobile-row {
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #f8f9fa;
}

/* Ergebnisfarben */
.ts-bonus-mobile-row.correct {
    background: #e9f7ef;
    border: 1px solid #b7e4c7;
}

.ts-bonus-mobile-row.wrong {
    background: #fdecea;
    border: 1px solid #f5c2c7;
}

/* Ich = Rahmen, KEIN Background */
.ts-bonus-mobile-row.me {
    border: 2px solid #0d6efd;
}

/* Content */
.ts-bonus-mobile-user {
    font-weight: 600;
}

/* ⭐ für eigenen Eintrag */
.ts-bonus-mobile-row.me .ts-bonus-mobile-user::after {
    content: " ⭐";
}

/* Antwort */
.ts-bonus-mobile-answer-text {
    color: #198754;
}

/* Punkte */
.ts-bonus-mobile-points {
    font-weight: bold;
    align-self: flex-end;
}

/* Punktefarben */
.ts-bonus-mobile-row.correct .ts-bonus-mobile-points {
    color: #198754;
}

.ts-bonus-mobile-row.wrong .ts-bonus-mobile-points {
    color: #dc3545;
}