/* Estilos base para White Label PDF Manager */
/* Tailwind CSS se carga desde CDN en index.html */

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
}

#root {
  min-height: 100vh;
}

/* Custom scrollbar */
.custom-scrollbar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #555;
}

