/* Dashboard specific styles */
.dashboard-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.dashboard-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.tab-active {
  color: #4F46E5;
  border-bottom: 2px solid #4F46E5;
}

.button-primary {
  background-color: #4F46E5;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: background-color 0.2s;
}

.button-primary:hover {
  background-color: #4338CA;
}

.button-secondary {
  background-color: white;
  color: #374151;
  border: 1px solid #D1D5DB;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 0.2s;
}

.button-secondary:hover {
  background-color: #F9FAFB;
  border-color: #9CA3AF;
}

.button-danger {
  background-color: #DC2626;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: background-color 0.2s;
}

.button-danger:hover {
  background-color: #B91C1C;
}

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

.dashboard-card {
  animation: fadeIn 0.3s ease-out;
}
