/* Row wrapper: keep both boxes on one line, spaced evenly */
.stats-row-container {
    display: flex;
    justify-content: space-between;   /* pushes boxes to ends */
    gap: 20px;                        /* optional breathing room */
    max-width: 200px;                 /* same width as table pill if desired */
    margin: 0 auto 12px;              /* center row + bottom gap */
}

/* Each inset box */
.inset-stat-box {
    border: inset 4px #d6c7a3;
    background-color: #ada387;
    padding: 6px 14px;
    border-radius: 8px;
    width: 60%;          /* ensures equal widths in flex row */
    text-align: center;
    box-shadow: inset 0 0 3px rgba(0,0,0,0.12);
}

/* Header label inside each box */
.stat-header {
    font-size: 14px;
    font-weight: 500;
    color: #eee1c4;
    margin-bottom: 2px;
}

/* Placeholder value */
.stat-value {
    font-size: 20px;
    font-weight: 600;
    color: #eee1c4;
}
