/* Dark Mode Tailwind – CDN wird in layout.ejs geladen */

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

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

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

::-webkit-scrollbar-thumb:hover {
  background: #6b7280;
}

/* Smooth transitions */
* {
  transition: background-color 0.2s ease;
}

/* Focus states */
input:focus,
textarea:focus,
select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

/* Table styling */
table {
  border-collapse: collapse;
}

/* Button hover effects */
button,
a[class*="bg-"] {
  transition: all 0.2s ease;
}

button:active,
a[class*="bg-"]:active {
  transform: translateY(1px);
}
