* {
  font-family: 'Inter', -apple-system, sans-serif;
}

body {
  min-height: 100vh;
}

.tab-active {
  background-color: #1e3a5f;
  color: white;
}

.sidebar-link {
  transition: all 0.15s ease;
}

.sidebar-link:hover {
  background-color: #f1f5f9;
}

.sidebar-link.active {
  background-color: #1e3a5f;
  color: white;
}

.wizard-step {
  transition: all 0.2s ease;
}

.wizard-step.active {
  background-color: #1e3a5f;
  color: white;
}

.wizard-step.completed {
  background-color: #22c55e;
  color: white;
}

input[type="color"] {
  border: none;
  cursor: pointer;
  border-radius: 8px;
}

.scrollbar-thin::-webkit-scrollbar {
  width: 6px;
}
.scrollbar-thin::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.fade-in {
  animation: fadeIn 0.2s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.status-vigente {
  background-color: #dcfce7;
  color: #166534;
}
.status-vencida {
  background-color: #fee2e2;
  color: #991b1b;
}
.status-sem_validade {
  background-color: #f1f5f9;
  color: #64748b;
}

.drop-zone {
  border: 2px dashed #cbd5e1;
  transition: all 0.15s ease;
}
.drop-zone.drag-over {
  border-color: #1e3a5f;
  background-color: #eff6ff;
}

.cover-preview-canvas {
  aspect-ratio: 210/297;
  max-height: 640px;
}
