/* Estilos customizados para o admin Unfold do GeoFazendas Web */

/* Customizações gerais */
:root {
  --unfold-primary-color: #14651e;
  --unfold-secondary-color: #2e8439;
  --unfold-success-color: #57a660;
  --unfold-warning-color: #f59e0b;
  --unfold-error-color: #ef4444;
}

/* Customização do header */
.header-brand {
  font-weight: 600;
  color: var(--unfold-primary-color);
}

/* Customização do dashboard */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--unfold-primary-color);
}

.stat-card h3 {
  margin: 0 0 0.5rem 0;
  color: var(--unfold-primary-color);
  font-size: 1.5rem;
  font-weight: 600;
}

.stat-card p {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
}

/* Customização dos formulários */
.form-row {
  margin-bottom: 1rem;
}

/* Customização das tabelas */
.results table {
  border-radius: 8px;
  overflow: hidden;
}

/* Customização responsive */
@media (max-width: 768px) {
  .dashboard-stats {
    grid-template-columns: 1fr;
  }
}
