/* Shared compact stat grid used by tournament player/team pages */
.stats-compact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background-color: #e5e7eb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

@media (min-width: 576px) {
    .stats-compact-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-compact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    background: white;
}

.stat-compact-label {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.stat-compact-value {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
}

.stat-compact-value.positive {
    color: #10b981;
}

.stat-compact-value.negative {
    color: #ef4444;
}
