.crm-sections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.crm-column h3 {
  margin-bottom: 10px;
  border-bottom: 2px solid #ccc;
  padding-bottom: 4px;
}

.crm-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.crm-column ul li {
  margin: 6px 0;
}

.crm-recent {
  margin-top: 20px;
}

.crm-recent h3 {
  margin-bottom: 10px;
  border-bottom: 2px solid #ccc;
  padding-bottom: 4px;
}

.crm-table {
  width: 100%;
  border-collapse: collapse;
}

.crm-table th,
.crm-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

/* ✅ Responsive: stack to 1 column on small screens */
@media (max-width: 768px) {
  .crm-sections {
    grid-template-columns: 1fr;
  }
}
