@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
}

/* Gradientes e backgrounds */
.bg-gradient {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

/* Componentes específicos */
.gauge-container {
  position: relative;
  height: 150px;
  width: 300px;
  margin: 0 auto;
}

/* Navegação por tabs */
.tab-active {
  color: #4f46e5;
  border-bottom: 2px solid #4f46e5;
}

.tab-inactive {
  color: #6b7280;
  border-bottom: 2px solid transparent;
}

/* Utilidades de texto */
.break-all {
  word-break: break-all;
}

/* Animações e transições */
.transition-all {
  transition: all 0.2s ease-in-out;
}

/* Estilos para o PDF */
@media print {
  .no-print {
    display: none !important;
  }
  
  body {
    padding: 0;
    margin: 0;
  }
  
  #pdf-content {
    padding: 20px;
  }
}

/* Utilitários adicionais */
.cursor-help {
  cursor: help;
}

.text-wrap {
  word-wrap: break-word;
}

.max-h-80 {
  max-height: 20rem;
}

.overflow-y-auto {
  overflow-y: auto;
}

/* Ajustes responsivos */
@media (max-width: 640px) {
  .gauge-container {
    height: 120px;
    width: 240px;
  }
}