/**
 * WHP Subscriptions & Billing - Public Styles
 */

/* Stats Grid */
.whp-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.whp-stat-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1rem;
}

.whp-stat-label {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.whp-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
}

/* Invoice Table */
.whp-account-invoices .whp-table {
    width: 100%;
}

/* Empty State */
.whp-empty-state {
    text-align: center;
    padding: 3rem;
    background: #f8fafc;
    border-radius: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .whp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
