.crm-view {
  max-width: 800px;
  margin: 2rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  font-family: inherit;
}

.crm-view h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.crm-view h2 {
  margin-top: 2rem;
  color: #2f5e2f;
  font-size: 1.25rem;
  font-weight: 600;
}

.crm-view ul {
  list-style: disc inside;
  padding-left: 0;
  margin: 0 0 2rem 0;
}

.crm-view li {
  margin-bottom: 0.75rem;
  background: #f5f5f5;
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

.crm-view a {
  color: #0d6efd;
  text-decoration: none;
}

.crm-view a:hover {
  text-decoration: underline;
}

/* TAREAS SINGLE */

/* ====== SINGLE TAREA ====== */

.single-tarea main.container {
  max-width: 800px;
  margin: 60px auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  font-family: "Segoe UI", sans-serif;
}

.single-tarea main.container h1 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #111;
  text-align: center;
}

.single-tarea main.container ul {
  list-style: none;
  padding: 0;
}

.single-tarea main.container li {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #333;
}

.single-tarea main.container li strong {
  color: #000;
}

.single-tarea main.container a {
  color: #3366cc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.single-tarea main.container a:hover {
  color: #1a4da1;
  text-decoration: underline;
}

