/* App Core — estilos mínimos do dashboard/frontend */
.app-dashboard__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.app-dashboard-card {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.app-dashboard-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.app-dashboard-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}
.app-dashboard-card p {
  margin: 0;
  color: #666;
}
.notification.is-success {
  background: #ecfdf3;
  border: 1px solid #abefc6;
  color: #067647;
  padding: 1rem;
  border-radius: 6px;
}
.notification.is-danger {
  background: #fef3f2;
  border: 1px solid #fecdca;
  color: #b42318;
  padding: 1rem;
  border-radius: 6px;
}
.notification.is-warning {
  background: #fffaeb;
  border: 1px solid #fedf89;
  color: #93370d;
  padding: 1rem;
  border-radius: 6px;
}
.fonte_preta { color: #111; }
.organiza-form .panel-title { font-weight: 600; }
