/* 食べ打 個人記録パネル — 1行コンパクト構成（高さ追加分を最小化） */

.tabeuchi-stats-panel {
    margin: 0 auto 14px;
    padding: 8px 12px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    max-width: 600px;
    color: #444;
    font-size: 0.85em;
}

.tabeuchi-stats-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    row-gap: 4px;
}

.tabeuchi-stats-title {
    font-weight: bold;
    color: #667eea;
    font-size: 0.9em;
    white-space: nowrap;
}

.tabeuchi-stats-newbest {
    display: none;
    margin-left: 6px;
    padding: 1px 6px;
    background: #f5576c;
    color: #fff;
    border-radius: 4px;
    font-size: 0.75em;
    font-weight: bold;
    vertical-align: middle;
}

.tabeuchi-stats-item {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    white-space: nowrap;
}

.tabeuchi-stats-label {
    color: #888;
    font-size: 0.85em;
}

.tabeuchi-stats-value {
    font-weight: bold;
    color: #667eea;
    font-size: 1em;
}

.tabeuchi-stats-value.is-up   { color: #28a745; }
.tabeuchi-stats-value.is-down { color: #c0392b; }
.tabeuchi-stats-value.is-flat { color: #888; }

.tabeuchi-stats-reset {
    margin-left: auto;
    padding: 3px 10px;
    font-size: 0.8em;
    background: #fff;
    color: #888;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    line-height: 1.4;
    transition: all 0.2s;
}

.tabeuchi-stats-reset:hover {
    background: #f0f0f0;
    color: #555;
}

@media (max-width: 768px) {
    .tabeuchi-stats-panel {
        padding: 6px 10px;
        margin: 0 auto 10px;
        font-size: 0.78em;
    }
    .tabeuchi-stats-row {
        gap: 6px;
        row-gap: 3px;
    }
    .tabeuchi-stats-title {
        font-size: 0.85em;
    }
    .tabeuchi-stats-value {
        font-size: 0.95em;
    }
    .tabeuchi-stats-reset {
        padding: 2px 8px;
        font-size: 0.75em;
    }
}