/* Custom CSS on top of Tailwind */
:root {
  --primary-color: #6366f1; /* Indigo 500 */
  --secondary-color: #10b981; /* Emerald 500 */
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0f172a; /* Slate 900 for modern dark mode */
  color: #f8fafc; /* Slate 50 */
}

.glass-panel {
  background: rgba(30, 41, 59, 0.7); /* Slate 800 with opacity */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.15);
}

.kanban-col {
  min-height: 500px;
  background: rgba(15, 23, 42, 0.6);
  border-radius: 0.5rem;
  padding: 0.5rem;
}

.card-hover {
  transition: all 0.2s ease-in-out;
}

.card-hover:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #0f172a;
}
::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #475569;
}

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

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