/* public/css/app.css — CoachOS in-app styles. Landing page theme in theme.css. */

/* Status badge colors */
.status-new       { background: #e0f2fe; color: #0c4a6e; }
.status-contacted { background: #fef9c3; color: #713f12; }
.status-booked    { background: #ede9fe; color: #5b21b6; }
.status-active    { background: #dcfce7; color: #14532d; }

/* Stat cards */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}

.stat-card {
  background: var(--fg-light);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 20px 24px;
  text-align: center;
}

.stat-card .stat-value {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--fg-dark);
  line-height: 1;
}

.stat-card .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted-light);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Table */
.pipeline-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--fg-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

.pipeline-table th {
  text-align: left;
  padding: 14px 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-light);
}

.pipeline-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}

.pipeline-table tr:last-child td { border-bottom: none; }

.pipeline-table tr:hover td { background: rgba(232,168,56,0.04); }

.lead-name {
  font-weight: 600;
  color: var(--fg-light);
}

.lead-email {
  font-size: 0.82rem;
  color: var(--text-muted-light);
  margin-top: 2px;
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-select {
  background: var(--bg-dark);
  color: var(--fg-light);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

/* Sessions */
.sessions-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
}

.session-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--fg-light);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 16px 20px;
}

.session-time {
  min-width: 140px;
  font-weight: 600;
  color: var(--accent);
  font-size: 0.92rem;
}

.session-info { flex: 1; }

.session-client {
  font-weight: 600;
  color: var(--fg-light);
}

.session-notes {
  font-size: 0.82rem;
  color: var(--text-muted-light);
  margin-top: 2px;
}

.session-revenue {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--fg-light);
}

/* Responsive */
@media (max-width: 768px) {
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .session-card { flex-wrap: wrap; }
  .session-time { min-width: 100%; }
}