body,
html {
  height: 100% !important;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #f8f9fa;
  /* gray-50 equivalent */
}

/* Custom styles for the app */
.bg-teal-700 {
  background-color: #007b6b !important;
}

.bg-teal-800 {
  background-color: #00695c !important;
}

.text-teal-700 {
  color: #007b6b !important;
}

/* Ensure images in logo containers behave correctly */
.logo-container {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Card hover scaling for the dashboard */
.card-btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-btn:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: slideUpFade 0.4s ease-out;
}

/* Custom Color Themes */
.bg-purple-subtle {
  background-color: #f3e8ff !important;
}

.text-purple {
  color: #7e22ce !important;
}

.border-purple-subtle {
  border-color: #e9d5ff !important;
}

.bg-green-subtle {
  background-color: #dcfce7 !important;
}

.text-green {
  color: #15803d !important;
}

.border-green-subtle {
  border-color: #bbf7d0 !important;
}

.bg-orange-subtle {
  background-color: #ffedd5 !important;
}

.text-orange {
  color: #c2410c !important;
}

.border-orange-subtle {
  border-color: #fed7aa !important;
}

/* Active states for cards */
.card-active.border-purple {
  border-color: #7e22ce !important;
  box-shadow: 0 0 0 0.25rem rgba(126, 34, 206, 0.15) !important;
}

.card-active.border-green {
  border-color: #15803d !important;
  box-shadow: 0 0 0 0.25rem rgba(21, 128, 61, 0.15) !important;
}

.card-active.border-orange {
  border-color: #c2410c !important;
  box-shadow: 0 0 0 0.25rem rgba(194, 65, 12, 0.15) !important;
}