* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #F1F5F9;
  --white: #FFFFFF;
  --sidebar-bg: #0F172A;
  --sidebar-text: #94A3B8;
  --sidebar-active: #FFFFFF;
  --primary: #2563EB;
  --primary-light: #EFF6FF;
  --green: #10B981;
  --green-light: #ECFDF5;
  --yellow: #F59E0B;
  --yellow-light: #FFFBEB;
  --red: #EF4444;
  --red-light: #FEF2F2;
  --purple: #8B5CF6;
  --purple-light: #F5F3FF;
  --gray: #64748B;
  --border: #E2E8F0;
  --text: #1E293B;
  --text-muted: #64748B;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
}

body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); }

.layout { display: flex; height: 100vh; overflow: hidden; }

/* Sidebar */
.sidebar {
  width: 240px; min-width: 240px;
  background: var(--sidebar-bg);
  display: flex; flex-direction: column;
  padding: 24px 0;
  overflow-y: auto;
}

.sidebar-header { padding: 0 20px 28px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; color: white;
}
.logo-title { color: white; font-weight: 600; font-size: 15px; }
.logo-sub { color: var(--sidebar-text); font-size: 11px; }

.sidebar-nav { padding: 0 12px; flex: 1; }
.nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  color: var(--sidebar-text); text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: all 0.15s;
  margin-bottom: 2px;
}
.nav-item:hover { background: rgba(255,255,255,0.07); color: white; }
.nav-item.active { background: rgba(37,99,235,0.3); color: white; }
.nav-icon { font-size: 16px; }

.sidebar-goals { padding: 20px; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 16px; }
.goal-title { color: var(--sidebar-text); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.goal-item { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 12px; color: var(--sidebar-text); }
.goal-bar { flex: 1; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.goal-fill { height: 100%; background: var(--green); border-radius: 2px; transition: width 0.5s; }

/* Main */
.main { flex: 1; overflow-y: auto; padding: 28px; }

.topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.page-title { font-size: 22px; font-weight: 700; }
.topbar-actions { display: flex; gap: 10px; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.stat-card {
  background: var(--white); border-radius: var(--radius);
  padding: 20px 24px; box-shadow: var(--shadow);
}
.stat-value { font-size: 32px; font-weight: 700; color: var(--text); }
.stat-value.blue { color: var(--primary); }
.stat-value.yellow { color: var(--yellow); }
.stat-value.green { color: var(--green); }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* Sections */
.section { display: none; }
.section.active { display: block; }

/* Pipeline filters */
.pipeline-filters { display: flex; gap: 12px; margin-bottom: 20px; }
.search-input, .filter-select {
  padding: 9px 14px; border: 1px solid var(--border);
  border-radius: 8px; font-size: 14px; font-family: inherit;
  background: var(--white); color: var(--text);
  outline: none; transition: border 0.15s;
}
.search-input { flex: 1; }
.search-input:focus, .filter-select:focus { border-color: var(--primary); }

/* Kanban */
.kanban { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 16px; }
.kanban-col {
  min-width: 240px; width: 240px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.kanban-col-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.kanban-col-title { font-size: 13px; font-weight: 600; }
.kanban-badge {
  font-size: 11px; font-weight: 600; padding: 2px 8px;
  border-radius: 20px; background: var(--bg);
}
.kanban-cards { display: flex; flex-direction: column; gap: 10px; min-height: 40px; }

.prospect-card {
  background: var(--bg); border-radius: 8px;
  padding: 12px; cursor: pointer;
  border: 1px solid var(--border);
  transition: all 0.15s;
}
.prospect-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.card-name { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.card-city { font-size: 12px; color: var(--text-muted); }
.card-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }
.card-email-badge {
  font-size: 10px; padding: 2px 6px; border-radius: 4px;
  font-weight: 500;
}
.has-email { background: var(--green-light); color: var(--green); }
.no-email { background: var(--red-light); color: var(--red); }
.card-date { font-size: 11px; color: var(--text-muted); }

/* Status colors */
.status-new .kanban-col-title { color: var(--gray); }
.status-contacted .kanban-col-title { color: var(--primary); }
.status-replied .kanban-col-title { color: var(--yellow); }
.status-call .kanban-col-title { color: var(--purple); }
.status-proposal .kanban-col-title { color: #F97316; }
.status-client .kanban-col-title { color: var(--green); }

/* Cards */
.card {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }

/* Email sequences */
.email-sequences { margin: 20px 0; }
.sequence-item {
  display: flex; gap: 16px; padding: 16px;
  border: 1px solid var(--border); border-radius: 8px;
  margin-bottom: 10px;
}
.sequence-day {
  font-size: 12px; font-weight: 700; color: var(--primary);
  white-space: nowrap; min-width: 60px; padding-top: 2px;
}
.sequence-content strong { font-size: 14px; }
.sequence-content p { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* Content list */
.content-header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.content-header-row h3 { font-size: 16px; font-weight: 600; }
.content-list { display: flex; flex-direction: column; gap: 12px; }
.content-item {
  background: var(--white); border-radius: var(--radius);
  padding: 16px 20px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 16px;
}
.content-platform {
  font-size: 12px; font-weight: 600; padding: 4px 10px;
  border-radius: 20px; white-space: nowrap;
}
.platform-LinkedIn { background: #EFF6FF; color: #1D4ED8; }
.platform-Instagram { background: #FDF4FF; color: #9333EA; }
.platform-YouTube { background: #FEF2F2; color: #DC2626; }
.content-info { flex: 1; }
.content-title { font-size: 14px; font-weight: 500; }
.content-meta { font-size: 12px; color: var(--text-muted); margin-top: 3px; }
.content-status {
  font-size: 12px; font-weight: 500; padding: 3px 10px;
  border-radius: 20px;
}
.status-draft { background: var(--bg); color: var(--gray); }
.status-ready { background: var(--primary-light); color: var(--primary); }
.status-published { background: var(--green-light); color: var(--green); }

/* Log */
.log-list { display: flex; flex-direction: column; gap: 8px; }
.log-entry {
  display: flex; gap: 12px; padding: 10px 14px;
  border-radius: 8px; background: var(--bg);
  font-size: 13px; align-items: flex-start;
}
.log-type {
  font-size: 11px; font-weight: 700; padding: 2px 8px;
  border-radius: 4px; white-space: nowrap; margin-top: 1px;
}
.type-SCRAPE { background: #EFF6FF; color: var(--primary); }
.type-EMAIL { background: var(--green-light); color: var(--green); }
.type-ERROR { background: var(--red-light); color: var(--red); }
.type-INFO { background: var(--bg); color: var(--gray); }
.type-REPLY { background: var(--purple-light); color: var(--purple); }

/* Flow progress */
.flow-progress {
  display: flex; align-items: flex-start; gap: 0;
  margin-bottom: 20px; overflow-x: auto; padding-bottom: 4px;
}
.flow-step {
  display: flex; flex-direction: column; align-items: center;
  min-width: 90px; position: relative;
}
.flow-step:not(:last-child)::after {
  content: ''; position: absolute;
  top: 16px; left: 50%; width: 100%; height: 2px;
  background: var(--border); z-index: 0;
}
.flow-step.done:not(:last-child)::after { background: var(--green); }
.flow-step.active:not(:last-child)::after { background: var(--primary); }
.flow-dot {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; z-index: 1; position: relative;
}
.flow-step.done .flow-dot { background: var(--green); border-color: var(--green); color: white; }
.flow-step.active .flow-dot { background: var(--primary); border-color: var(--primary); color: white; box-shadow: 0 0 0 4px var(--primary-light); }
.flow-step.pending .flow-dot { color: var(--text-muted); }
.flow-label { font-size: 10px; color: var(--text-muted); margin-top: 6px; text-align: center; }
.flow-date { font-size: 10px; color: var(--text-muted); text-align: center; }
.flow-step.done .flow-label, .flow-step.done .flow-date { color: var(--green); }
.flow-step.active .flow-label { color: var(--primary); font-weight: 600; }

.flow-stats {
  display: flex; gap: 16px; flex-wrap: wrap;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.flow-stat { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); }
.flow-stat strong { color: var(--text); }

/* Email template cards */
.email-template-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); margin-bottom: 12px;
  overflow: hidden; box-shadow: var(--shadow);
}
.email-template-header {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; cursor: pointer; transition: background 0.15s;
}
.email-template-header:hover { background: var(--bg); }
.template-step-badge {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary);
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.template-info { flex: 1; }
.template-day { font-size: 11px; color: var(--text-muted); margin-bottom: 2px; }
.template-subject { font-size: 14px; font-weight: 600; }
.template-cta-badge {
  font-size: 11px; padding: 2px 8px; border-radius: 20px;
  background: var(--green-light); color: var(--green); font-weight: 500; white-space: nowrap;
}
.template-toggle { font-size: 16px; color: var(--text-muted); transition: transform 0.2s; }
.template-toggle.open { transform: rotate(180deg); }
.email-template-body { display: none; padding: 0 18px 18px; border-top: 1px solid var(--border); }
.email-template-body.open { display: block; }
.template-field { margin-top: 14px; }
.template-field label { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 6px; display: block; }
.template-field input, .template-field textarea {
  width: 100%; padding: 10px 12px; border: 1px solid var(--border);
  border-radius: 8px; font-size: 13px; font-family: inherit;
  line-height: 1.6; outline: none; transition: border 0.15s; resize: vertical;
}
.template-field input:focus, .template-field textarea:focus { border-color: var(--primary); }
.template-actions { display: flex; gap: 8px; margin-top: 14px; justify-content: flex-end; }

/* Editorial calendar */
.editorial-calendar { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.cal-day { background: var(--bg); border-radius: 8px; padding: 10px; min-height: 80px; }
.cal-day-label { font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; margin-bottom: 6px; }
.cal-day-date { font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.cal-post-chip {
  font-size: 10px; font-weight: 600; padding: 3px 7px;
  border-radius: 4px; margin-bottom: 4px; display: block;
}
.chip-LinkedIn { background: #EFF6FF; color: #1D4ED8; }
.chip-Instagram { background: #FDF4FF; color: #9333EA; }
.chip-YouTube { background: #FEF2F2; color: #DC2626; }

/* Carousel templates grid */
.carousel-templates-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 4px; }
.carousel-tpl-card {
  border: 2px solid var(--border); border-radius: 10px; padding: 16px;
  cursor: pointer; transition: all 0.15s;
}
.carousel-tpl-card:hover { border-color: var(--primary); background: var(--primary-light); }
.carousel-tpl-card.selected { border-color: var(--primary); background: var(--primary-light); }
.tpl-platform { font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.tpl-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.tpl-slides { font-size: 12px; color: var(--text-muted); }

/* Content list cards with carousel preview */
.content-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); margin-bottom: 14px;
  box-shadow: var(--shadow); overflow: hidden;
}
.content-card-header {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
}
.content-card-body { padding: 0 18px 18px; }
.carousel-preview {
  display: flex; gap: 8px; overflow-x: auto;
  padding-bottom: 4px;
}
.carousel-thumb {
  width: 80px; height: 80px; object-fit: cover;
  border-radius: 6px; border: 1px solid var(--border);
  flex-shrink: 0; cursor: pointer;
}
.carousel-thumb:hover { border-color: var(--primary); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.85);
  display: flex; align-items: center; justify-content: center;
  z-index: 2000;
}
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 12px; }
.lightbox-close { position: absolute; top: 20px; right: 24px; color: white; font-size: 32px; cursor: pointer; }
.log-message { flex: 1; }
.log-time { font-size: 11px; color: var(--text-muted); white-space: nowrap; }

/* Buttons */
.btn {
  padding: 9px 18px; border-radius: 8px; font-size: 14px;
  font-weight: 500; cursor: pointer; border: none;
  font-family: inherit; transition: all 0.15s;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: #1D4ED8; }
.btn-secondary { background: var(--white); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--bg); }
.btn-sm { padding: 5px 12px; font-size: 12px; }
.btn-danger { background: var(--red-light); color: var(--red); }

/* Forms */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 9px 12px;
  border: 1px solid var(--border); border-radius: 8px;
  font-size: 14px; font-family: inherit;
  outline: none; transition: border 0.15s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
}
.multi-select { width: 100%; border: 1px solid var(--border); border-radius: 8px; padding: 8px; font-family: inherit; font-size: 14px; }

/* Modal */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
}
.modal {
  background: var(--white); border-radius: var(--radius);
  width: 540px; max-width: 95vw;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.modal-header { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.modal-header h3 { font-size: 16px; font-weight: 600; }
.modal-close { background: none; border: none; font-size: 18px; cursor: pointer; color: var(--text-muted); }
.modal-body { padding: 24px; }
.modal-footer { padding: 16px 24px; border-top: 1px solid var(--border); display: flex; gap: 10px; justify-content: flex-end; }

/* Alerts */
.alert { padding: 12px 16px; border-radius: 8px; font-size: 13px; }
.alert-warning { background: var(--yellow-light); color: #92400E; border: 1px solid #FDE68A; }

/* Status messages */
.status-message { padding: 12px 16px; border-radius: 8px; margin-top: 16px; font-size: 13px; }
.status-message.success { background: var(--green-light); color: #065F46; }
.status-message.error { background: var(--red-light); color: #991B1B; }
.status-message.info { background: var(--primary-light); color: #1E40AF; }

.text-muted { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; }
small.text-muted { font-size: 12px; display: block; margin-top: 4px; }

.empty-state { text-align: center; padding: 40px 20px; color: var(--text-muted); font-size: 14px; }

/* ─── Modal XL ─────────────────────────────────────────────────────────────── */
.modal-xl { width: 860px; max-width: 95vw; max-height: 90vh; }
.modal-xl .modal-body { overflow-y: auto; max-height: calc(90vh - 130px); }

/* ─── Social Connection Badges ──────────────────────────────────────────────── */
.social-badge {
  padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.social-badge.connected { background: var(--green-light); color: #065F46; border: 1px solid #6EE7B7; cursor: default; }
.social-badge.disconnected { background: var(--bg); color: var(--text-muted); border: 1.5px dashed var(--border); }
.social-badge.disconnected:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

/* ─── Slides Gallery ─────────────────────────────────────────────────────────── */
.slides-gallery {
  display: flex; gap: 10px; overflow-x: auto; padding: 8px 0;
  scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
.slide-item {
  flex: 0 0 auto; width: 130px; cursor: pointer; border-radius: 8px;
  overflow: hidden; border: 2px solid transparent; transition: border-color 0.2s;
  background: var(--surface);
}
.slide-item:hover { border-color: var(--primary); }
.slide-item img { width: 130px; height: 130px; object-fit: cover; display: block; }
.slide-num { font-size: 11px; color: var(--text-muted); text-align: center; padding: 4px 0; }

/* ─── Hashtag Chips ──────────────────────────────────────────────────────────── */
.hashtag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.hashtag-chip {
  padding: 4px 12px; background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 20px; font-size: 12px; color: var(--text-muted); cursor: pointer;
  transition: all 0.15s;
}
.hashtag-chip:hover { background: var(--primary-light); color: var(--primary); border-color: var(--primary); }

/* ─── Publish Buttons ────────────────────────────────────────────────────────── */
.btn-publish-li {
  background: #0A66C2; color: white; border: none; padding: 10px 20px;
  border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; transition: background 0.2s;
}
.btn-publish-li:hover:not(:disabled) { background: #004182; }
.btn-publish-li:disabled { opacity: 0.4; cursor: not-allowed; }

.btn-publish-ig {
  background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
  color: white; border: none; padding: 10px 20px;
  border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; transition: opacity 0.2s;
}
.btn-publish-ig:hover:not(:disabled) { opacity: 0.85; }
.btn-publish-ig:disabled { opacity: 0.4; cursor: not-allowed; }

/* ─── Published Badge ────────────────────────────────────────────────────────── */
.published-badge {
  display: inline-block; padding: 2px 8px; border-radius: 10px;
  background: var(--green-light); color: #065F46;
  font-size: 11px; font-weight: 600; margin-right: 4px;
}

/* ─── Surface Variable ───────────────────────────────────────────────────────── */
:root { --surface: #F8FAFC; }

/* ─── Automazioni ────────────────────────────────────────────────────────────── */
.automation-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.auto-stat { background: var(--bg); border-radius: 10px; padding: 16px; }
.auto-stat-val { font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.auto-stat-label { font-size: 12px; color: var(--text-muted); }

.schedule-timeline { display: flex; flex-direction: column; gap: 0; }
.schedule-item { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.schedule-item:last-child { border-bottom: none; }
.schedule-time { font-size: 13px; font-weight: 700; color: var(--text-muted); min-width: 48px; font-family: monospace; }
.schedule-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.schedule-dot.scrape { background: var(--green); }
.schedule-dot.email { background: var(--primary); }
.schedule-dot.linkedin { background: #0A66C2; }
.schedule-dot.reply { background: var(--yellow); }

/* ─── LinkedIn Bot ───────────────────────────────────────────────────────────── */
.linkedin-conn-item { display:flex; justify-content:space-between; align-items:center; padding:10px 0; border-bottom:1px solid var(--border); }
.linkedin-conn-item:last-child { border-bottom:none; }
.conn-avatar { width:32px; height:32px; border-radius:50%; background:#0A66C2; color:white; display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:700; flex-shrink:0; }
.conn-status { font-size:11px; font-weight:600; padding:3px 8px; border-radius:10px; }
.conn-status.status-pending { background:var(--yellow-light); color:#92400E; }
.conn-status.status-connected { background:var(--green-light); color:#065F46; }
.conn-status.status-message_sent { background:var(--primary-light); color:#1E40AF; }
.conn-status.status-replied { background:#F3E8FF; color:#6B21A8; }
.auto-stat-val.green { color: var(--green); }
.schedule-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.schedule-desc { font-size: 12px; color: var(--text-muted); }

/* ─── Email Schedule ─────────────────────────────────────────────────────────── */
.schedule-day { padding: 14px 0; border-bottom: 1px solid var(--border); }
.schedule-day:last-child { border-bottom: none; }
.schedule-day-today .schedule-day-date { color: var(--primary); font-weight: 700; }
.schedule-day-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.schedule-day-date { font-size: 13px; font-weight: 600; min-width: 80px; }
.schedule-day-count { font-size: 13px; color: var(--text-muted); min-width: 60px; }
.schedule-day-bar { flex: 1; height: 6px; background: var(--border); border-radius: 4px; overflow: hidden; }
.schedule-day-prospects { display: flex; flex-wrap: wrap; gap: 6px; }
.schedule-prospect-chip { font-size: 11px; padding: 3px 8px; background: var(--primary-light); color: var(--primary); border-radius: 10px; font-weight: 500; }
