/* Custom styles for dashboard page */

/* Enhanced Hero Section with Gradient Background */
.dashboard-hero {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-bottom: 2rem;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
}

.dashboard-hero:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.dashboard-hero h2 {
  font-size: 2.2rem;
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
}

/* Dashboard Cards */
.dashboard-card {
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

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

.dashboard-card .card-body {
  padding: 1.5rem;
}

/* Hover effect for cards */
.hover-card {
  transition: all 0.3s ease;
  border-radius: 6px;
}

.hover-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  background-color: #f8fafc;
}

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

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

.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

.animate-delay-3 {
  animation-delay: 0.3s;
}

.animate-delay-4 {
  animation-delay: 0.4s;
}

/* Text colors */
.text-slate-50 {
  color: #f8fafc;
}

.text-slate-300 {
  color: #cbd5e1;
}

.text-slate-600 {
  color: #475569;
}

.text-slate-700 {
  color: #334155;
}