:root {
  --shout-red: #FF3B30;
  --shout-red-hover: #E6352B;
  --shout-red-light: #FFF0EF;
  --charcoal: #0a0a0a;
  --off-white: #f5f5f5;
  --warm-gray: #4a4a4a;
  --light-gray: #e5e5e5;
  --white: #ffffff;
  --status-new: #3b82f6;
  --status-contacted: #8b5cf6;
  --status-discovery: #ec4899;
  --status-proposal: #f59e0b;
  --status-negotiation: #10b981;
  --status-won: #059669;
  --status-lost: #ef4444;
  --status-hold: #6b7280;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--charcoal);
  background: var(--off-white);
  min-height: 100vh;
}

/* ── Navbar ─────────────────────────────────────────────────────── */
.navbar {
  background: var(--charcoal);
  padding: 0 1.5rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.navbar-brand-text {
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.025em;
}

.navbar-brand-text span {
  color: var(--shout-red);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.15s;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: white;
  background: rgba(255,255,255,0.1);
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-add-lead {
  background: var(--shout-red);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-add-lead:hover {
  background: var(--shout-red-hover);
}

.user-menu {
  position: relative;
}

.user-menu-btn {
  background: rgba(255,255,255,0.1);
  color: white;
  border: none;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.user-menu-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  min-width: 160px;
  display: none;
  z-index: 200;
  overflow: hidden;
}

.user-menu-dropdown.show {
  display: block;
}

.user-menu-dropdown a,
.user-menu-dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.65rem 1rem;
  font-size: 0.8125rem;
  color: var(--warm-gray);
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  transition: background 0.1s;
}

.user-menu-dropdown a:hover,
.user-menu-dropdown button:hover {
  background: var(--off-white);
  color: var(--charcoal);
}

/* ── Mobile Nav Toggle ──────────────────────────────────────────── */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 767px) {
  .mobile-nav-toggle { display: block; }
  .navbar-links { display: none; }
  .navbar-links.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--charcoal);
    padding: 0.5rem 1rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .navbar-links.show a {
    padding: 0.75rem 1rem;
  }
  .btn-add-lead .btn-text { display: none; }
  .btn-add-lead { padding: 0.5rem 0.75rem; }
}

/* ── Login Page ─────────────────────────────────────────────────── */
.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1rem;
  background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a2e 100%);
}

.login-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.login-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.login-logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-top: 0.5rem;
}

.login-logo h1 span {
  color: var(--shout-red);
}

.login-logo p {
  color: var(--warm-gray);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.login-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #DC2626;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  margin-bottom: 1rem;
  display: none;
}

.login-error.show { display: block; }

/* ── Forms ──────────────────────────────────────────────────────── */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--warm-gray);
  margin-bottom: 0.35rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--charcoal);
  transition: border-color 0.15s, box-shadow 0.15s;
  background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--shout-red);
  box-shadow: 0 0 0 3px var(--shout-red-light);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--shout-red);
  color: white;
}

.btn-primary:hover {
  background: var(--shout-red-hover);
}

.btn-secondary {
  background: var(--light-gray);
  color: var(--warm-gray);
}

.btn-secondary:hover {
  background: #d4d4d4;
}

.btn-danger {
  background: #FEF2F2;
  color: #DC2626;
}

.btn-danger:hover {
  background: #FECACA;
}

.btn-sm {
  padding: 0.35rem 0.75rem;
  font-size: 0.8125rem;
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ── Page Layout ────────────────────────────────────────────────── */
.page-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem;
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
}

/* ── Stat Cards ─────────────────────────────────────────────────── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 1023px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .stat-grid { grid-template-columns: 1fr; }
}

.stat-card {
  background: white;
  border-radius: 10px;
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}

.stat-card-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--warm-gray);
  margin-bottom: 0.5rem;
}

.stat-card-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}

.stat-card-value.action-needed {
  color: var(--shout-red);
  cursor: pointer;
}

.stat-card-sub {
  font-size: 0.75rem;
  color: var(--warm-gray);
  margin-top: 0.35rem;
}

/* ── Cards / Panels ─────────────────────────────────────────────── */
.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  overflow: hidden;
}

.card-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-header h3 {
  font-size: 0.9375rem;
  font-weight: 600;
}

.card-body {
  padding: 1.25rem;
}

/* ── Dashboard Grid ─────────────────────────────────────────────── */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 1023px) {
  .dashboard-grid { grid-template-columns: 1fr; }
}

/* ── Status Badges ──────────────────────────────────────────────── */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.status-new { background: #EFF6FF; color: #1D4ED8; }
.status-contacted { background: #F5F3FF; color: #6D28D9; }
.status-discovery { background: #FDF2F8; color: #BE185D; }
.status-proposal { background: #FFFBEB; color: #B45309; }
.status-negotiation { background: #ECFDF5; color: #047857; }
.status-won { background: #ECFDF5; color: #059669; }
.status-lost { background: #FEF2F2; color: #DC2626; }
.status-on_hold { background: #F3F4F6; color: #4B5563; }

/* ── Clickable status badge ─────────────────────────────────────── */
.status-select-wrapper {
  position: relative;
  display: inline-block;
}

.status-select {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 1.5rem 0.2rem 0.6rem;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
}

.status-select-wrapper::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.5rem;
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* ── Leads Table ────────────────────────────────────────────────── */
.leads-table-wrapper {
  overflow-x: auto;
}

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

.leads-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--warm-gray);
  border-bottom: 2px solid var(--light-gray);
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}

.leads-table th:hover {
  color: var(--charcoal);
}

.leads-table th .sort-icon {
  margin-left: 0.25rem;
  font-size: 0.625rem;
  opacity: 0.3;
}

.leads-table th.sorted .sort-icon {
  opacity: 1;
  color: var(--shout-red);
}

.leads-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--light-gray);
  vertical-align: middle;
}

.leads-table tbody tr {
  transition: background 0.1s;
  cursor: pointer;
}

.leads-table tbody tr:hover {
  background: var(--off-white);
}

.leads-table tbody tr:nth-child(even) {
  background: rgba(0,0,0,0.01);
}

.leads-table tbody tr:nth-child(even):hover {
  background: var(--off-white);
}

.lead-name-cell {
  font-weight: 600;
  color: var(--charcoal);
}

.lead-company-cell {
  color: var(--warm-gray);
  font-size: 0.8125rem;
}

.lead-value {
  font-weight: 600;
  color: var(--charcoal);
}

.overdue-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--shout-red);
  font-size: 0.75rem;
  font-weight: 600;
}

/* ── Leads as Cards (mobile) ────────────────────────────────────── */
@media (max-width: 767px) {
  .leads-table-wrapper { display: none; }
  .leads-cards { display: block !important; }
}

.leads-cards {
  display: none;
}

.lead-card {
  background: white;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  cursor: pointer;
  transition: box-shadow 0.15s;
}

.lead-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.lead-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.lead-card-name {
  font-weight: 600;
  font-size: 0.9375rem;
}

.lead-card-company {
  color: var(--warm-gray);
  font-size: 0.8125rem;
}

.lead-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--warm-gray);
  margin-top: 0.5rem;
}

/* ── Filters ────────────────────────────────────────────────────── */
.filters-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.filter-select {
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  font-size: 0.8125rem;
  font-family: inherit;
  color: var(--warm-gray);
  background: white;
  cursor: pointer;
}

.filter-select:focus {
  outline: none;
  border-color: var(--shout-red);
}

.search-input-wrapper {
  position: relative;
  flex: 1;
  min-width: 200px;
}

.search-input-wrapper i {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 0.8125rem;
}

.search-input {
  width: 100%;
  padding: 0.45rem 0.75rem 0.45rem 2.25rem;
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  font-size: 0.8125rem;
  font-family: inherit;
  color: var(--charcoal);
  background: white;
}

.search-input:focus {
  outline: none;
  border-color: var(--shout-red);
}

.clear-filters-btn {
  font-size: 0.8125rem;
  color: var(--warm-gray);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.45rem;
  text-decoration: underline;
}

.clear-filters-btn:hover {
  color: var(--shout-red);
}

/* ── Lead Detail ────────────────────────────────────────────────── */
.lead-detail-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.lead-detail-title h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.lead-detail-title p {
  color: var(--warm-gray);
  font-size: 0.9375rem;
}

.lead-detail-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.lead-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 767px) {
  .lead-info-grid { grid-template-columns: 1fr; }
}

.lead-info-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.lead-info-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--warm-gray);
  margin-bottom: 0.25rem;
}

.lead-info-value {
  font-size: 0.9375rem;
  color: var(--charcoal);
}

.lead-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 1023px) {
  .lead-detail-layout { grid-template-columns: 1fr; }
}

/* ── Activity Timeline ──────────────────────────────────────────── */
.activity-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.activity-content {
  flex: 1;
  min-width: 0;
}

.activity-meta {
  font-size: 0.75rem;
  color: var(--warm-gray);
  margin-bottom: 0.2rem;
}

.activity-meta strong {
  color: var(--charcoal);
}

.activity-text {
  font-size: 0.875rem;
  color: var(--charcoal);
  line-height: 1.4;
}

/* ── Dashboard Activity Feed ────────────────────────────────────── */
.feed-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--light-gray);
  cursor: pointer;
  transition: background 0.1s;
}

.feed-item:hover {
  background: var(--off-white);
  margin: 0 -1.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.feed-item:last-child {
  border-bottom: none;
}

.feed-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.feed-text {
  font-size: 0.8125rem;
  color: var(--charcoal);
  line-height: 1.4;
}

.feed-text strong {
  font-weight: 600;
}

.feed-time {
  font-size: 0.6875rem;
  color: var(--warm-gray);
  margin-top: 0.15rem;
}

/* ── Modal ──────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.15s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal {
  background: white;
  border-radius: 12px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: slideUp 0.2s;
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h2 {
  font-size: 1.125rem;
  font-weight: 700;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--warm-gray);
  cursor: pointer;
  padding: 0.25rem;
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--light-gray);
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

@media (max-width: 767px) {
  .modal {
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
  }
}

/* ── Form Grid (modal) ──────────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}

@media (max-width: 767px) {
  .form-grid { grid-template-columns: 1fr; }
}

.form-grid .form-group.full-width {
  grid-column: 1 / -1;
}

/* ── Service Checkboxes ─────────────────────────────────────────── */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  cursor: pointer;
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  transition: all 0.15s;
}

.checkbox-label:has(input:checked) {
  background: var(--shout-red-light);
  border-color: var(--shout-red);
  color: var(--shout-red);
}

.checkbox-label input {
  display: none;
}

/* ── Confirm Dialog ─────────────────────────────────────────────── */
.confirm-dialog {
  max-width: 400px;
}

.confirm-dialog .modal-body {
  text-align: center;
  padding: 2rem 1.5rem;
}

.confirm-dialog .modal-body i {
  font-size: 2rem;
  color: var(--shout-red);
  margin-bottom: 1rem;
}

.confirm-dialog .modal-body p {
  font-size: 0.9375rem;
  color: var(--warm-gray);
  line-height: 1.5;
}

/* ── Pipeline Chart ─────────────────────────────────────────────── */
.pipeline-chart-container {
  height: 250px;
  padding: 1rem 0;
}

/* ── Empty States ───────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--warm-gray);
}

.empty-state i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.empty-state p {
  font-size: 0.9375rem;
}

/* ── Loading Spinner ────────────────────────────────────────────── */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--light-gray);
  border-top-color: var(--shout-red);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Toast Notifications ────────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  background: var(--charcoal);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 0.875rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  animation: slideInRight 0.3s;
  max-width: 350px;
}

.toast.success { border-left: 4px solid #059669; }
.toast.error { border-left: 4px solid #DC2626; }

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ── Scrollbar ──────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #999; }

/* ── Utility ────────────────────────────────────────────────────── */
.text-muted { color: var(--warm-gray); }
.text-sm { font-size: 0.8125rem; }
.font-semibold { font-weight: 600; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }

/* Add Activity form */
.add-activity-form {
  border-top: 1px solid var(--light-gray);
  padding-top: 1rem;
  margin-top: 0.5rem;
}
