body {
  background-color: #f5f7fb;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.crm-layout {
  min-height: 100vh;
}

.crm-sidebar {
  width: 230px;
  background: #ffffff;
  border-right: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
}

.crm-sidebar .nav-link {
  color: #4b5563;
  border-radius: 0.5rem;
  margin-bottom: 0.25rem;
}
.crm-sidebar .nav-link:hover {
  background-color: #f3f4ff;
  color: #4f46e5;
}

.crm-topbar {
  backdrop-filter: blur(8px);
}

.crm-content {
  background: #f5f7fb;
}

.avatar-circle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.card-elevated {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.badge-status-new { background-color: #dbeafe; color: #1d4ed8; }
.badge-status-in_progress { background-color: #fef3c7; color: #92400e; }
.badge-status-closed_won { background-color: #dcfce7; color: #166534; }
.badge-status-closed_lost { background-color: #fee2e2; color: #b91c1c; }
.badge-status-do_not_call { background-color: #e5e7eb; color: #374151; }

.badge-priority-low { background-color: #e0f2fe; color: #0369a1; }
.badge-priority-medium { background-color: #fef9c3; color: #854d0e; }
.badge-priority-high { background-color: #fee2e2; color: #b91c1c; }
