.crm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10050;
}

.crm-modal {
  background: #fff;
  border-radius: 10px;
  width: min(440px, calc(100vw - 32px));
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  font-family: inherit;
}

.crm-header {
  padding: 20px 24px 8px;
}

.crm-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
}

.crm-body {
  padding: 4px 24px 20px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.5;
  white-space: pre-wrap;
}

.crm-footer {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 12px 16px;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
}

.crm-btn {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s;
}

.crm-btn-cancel {
  background: #fff;
  border-color: #d1d5db;
  color: #374151;
}

.crm-btn-cancel:hover {
  background: #f3f4f6;
}

.crm-btn-confirm {
  background: #2563eb;
  color: #fff;
}

.crm-btn-confirm:hover {
  background: #1d4ed8;
}

.crm-btn:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}
