/*
views/mobile/useruebersicht/index.php
*/

/* ================= MOBILE USER ================= */
.ts-mobile-user {
    max-width: 420px;
    margin: 0 auto;
}

/* Avatar */
.ts-user-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid #ddd;
    object-fit: cover;
}

.ts-user-name {
    font-size: 1.2rem;
    font-weight: 600;
}

.ts-user-team {
    font-size: 0.9rem;
    color: #666;
}

/* Stat Boxes */
.ts-stat-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 10px;
}

.ts-stat-value {
    font-size: 1.4rem;
    font-weight: bold;
}

.ts-stat-label {
    font-size: 0.75rem;
    color: #777;
}

/* Detail Stats */
.ts-user-details {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 10px;
}

.ts-detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 4px 0;
    border-bottom: 1px solid #eee;
}

.ts-detail-row:last-child {
    border-bottom: none;
}

.ts-detail-row b {
    font-weight: 600;
}

.ts-rank b {
    color: #28a745;
}

/* Verlauf */
.ts-history-title {
    font-size: 0.9rem;
    font-weight: 600;
}

.ts-history-placeholder {
    font-size: 0.8rem;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 10px;
}