/**
 * Public / My Account styles for Position ID System
 */

.pis-my-account {
    max-width: 100%;
    overflow-x: auto;
}

/* ── 统计卡片网格 ──────────────────────────────── */
.pis-member-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}

.pis-member-stat {
    background: #f8f9fa;
    border: 1px solid #e2e4e7;
    border-radius: 6px;
    padding: 18px 14px;
    text-align: center;
}

.pis-member-stat .pis-stat-label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}

.pis-member-stat .pis-stat-value {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

/* ── 推广链接独立区域 ──────────────────────────── */
.pis-referral-section {
    padding: 16px 20px;
    margin-bottom: 24px;
    background: #fff;
    border: 1px solid #e2e4e7;
    border-radius: 6px;
}

.pis-referral-section__title {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.pis-referral-section__row {
    display: flex;
    gap: 8px;
    align-items: center;
    width: 100%;
}

.pis-referral-section__input {
    flex: 1;
    min-width: 0;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 13px;
    font-family: monospace;
    background: #f9fafb;
    color: #374151;
}

.pis-referral-section__input:focus {
    outline: none;
    border-color: #6b7280;
    box-shadow: 0 0 0 2px rgba(107, 114, 128, 0.12);
}

.pis-ref-copy-btn {
    white-space: nowrap;
    flex-shrink: 0;
}

.pis-referral-section__code {
    display: inline-block;
    margin-top: 8px;
    font-size: 12px;
    color: #6b7280;
}

.pis-referral-section__code strong {
    color: #374151;
    font-family: monospace;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* ── 表格 ──────────────────────────────────────── */
.pis-table-wrapper {
    margin-bottom: 20px;
}

.pis-table-wrapper table th {
    font-weight: 600;
    white-space: nowrap;
}

/* ── 徽章 ──────────────────────────────────────── */
.pis-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.pis-badge-active {
    background: #d4edda;
    color: #155724;
}

.pis-badge-disabled {
    background: #f8d7da;
    color: #721c24;
}

/* ── 响应式 ────────────────────────────────────── */
@media (max-width: 768px) {
    .pis-member-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .pis-member-stat .pis-stat-value {
        font-size: 18px;
    }
    .pis-referral-section__row {
        flex-direction: column;
        align-items: stretch;
    }
}
