/* =============================================
   FULL-SERVICE LEADS - Admin Dashboard Panel
   File: css/admin-leads.css
   ============================================= */

/* Stats Cards */
.leads-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.leads-stat-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.leads-stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f1f5f9;
}

.leads-stat-label {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* Table */
.leads-table-wrap {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    overflow-x: auto;
}

.leads-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.leads-table th {
    background: rgba(0, 0, 0, 0.3);
    color: #94a3b8;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 12px 16px;
    text-align: left;
    white-space: nowrap;
}

.leads-table td {
    padding: 12px 16px;
    color: #e2e8f0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.leads-table tr:hover td {
    background: rgba(59, 130, 246, 0.05);
}

/* Status Badges */
.lead-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.lead-status:hover { opacity: 0.8; }
.lead-status.new { background: rgba(34, 197, 94, 0.15); color: #4ade80; }
.lead-status.contacted { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.lead-status.converted { background: rgba(168, 85, 247, 0.15); color: #c084fc; }
.lead-status.closed { background: rgba(148, 163, 184, 0.15); color: #94a3b8; }

/* Plan Tags */
.lead-plan-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.lead-plan-tag.premium { background: rgba(34, 197, 94, 0.15); color: #4ade80; }
.lead-plan-tag.coaching { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.lead-plan-tag.vip { background: rgba(168, 85, 247, 0.15); color: #c084fc; }
.lead-plan-tag.unsure { background: rgba(148, 163, 184, 0.15); color: #94a3b8; }

/* Empty State */
.leads-empty {
    text-align: center;
    padding: 40px;
    color: #94a3b8;
}

.leads-empty .empty-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}
