/* =========================
   INCIDENT HISTORY – PROFESSIONAL
========================= */

/* container geral de cada incidente */
.incident-container {
  background: #ffffff !important;
  border: 1px solid #e5e5e0 !important;
  border-radius: 12px !important;
  padding: 18px 20px !important;
  margin-bottom: 16px !important;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  transition: all 0.15s ease;
}

/* hover sutil (premium feel) */
.incident-container:hover {
  border-color: #d4d4d0 !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

/* remove estilos antigos */
.incident-container .update {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

/* separação entre updates (se houver múltiplos) */
.incident-container .update + .update {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #f0f0ec !important;
}

/* título / status (Resolved - ...) */
.incident-container strong {
  font-weight: 600 !important;
  color: #1a1c20 !important;
}

/* corpo do incidente */
.incident-container .update-body {
  margin-top: 6px !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #4b5563 !important;
}

/* timestamp */
.incident-container small {
  display: block;
  margin-top: 8px;
  color: #9ca3af !important;
  font-size: 12px !important;
}

/* hover no conteúdo (bem leve) */
.incident-container .update:hover {
  background: transparent !important;
}