/* LeadsVault overrides to the ReviewBoost theme */


/* Stat Cards (admin dashboard) */
.stat-card { transition: transform 0.15s ease; height: 100%; }
.stat-card:hover { transform: translateY(-2px); }
.stat-card .stat-icon {
    width: 48px; height: 48px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
}

/* Empty states */
.empty-state { text-align: center; padding: 3rem 1rem; color: var(--rb-gray-500); }
.empty-state > i:first-of-type { font-size: 3rem; margin-bottom: 1rem; opacity: 0.5; }

/* Public landing wrapper — keeps the QR lead form readable */
.public-wrap {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #f6f7f8 0%, #e6f4fb 100%);
    padding: 2rem 1rem;
}
.public-card {
    width: 100%; max-width: 480px;
    background: var(--rb-white);
    border-radius: var(--rb-card-border-radius);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    overflow: hidden;
}
.public-card .header {
    padding: 1.5rem 1.5rem 0.5rem;
    text-align: center;
}
.public-card .body { padding: 1rem 1.5rem 1.5rem; }
.public-card .footer {
    background: var(--rb-gray-50);
    padding: 0.85rem 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--rb-gray-500);
}


dt {
    font-weight: var(--font-weight-regular);
}