/* Custom styles for ZenDin */

/* Dark mode support */
:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
}

/* 
 * White Label CSS dinâmico é carregado separadamente via <link>
 * no HTML para permitir que as cores sejam aplicadas dinamicamente
 */

.dark {
  color-scheme: dark;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.3s ease-in-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.dark ::-webkit-scrollbar-track {
  background: #1f2937;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  body {
    padding-bottom: 80px; /* Space for mobile nav */
  }
}

/* Print styles */
@media print {
  nav, footer, .no-print {
    display: none !important;
  }
}
