@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
}

.material-symbols-outlined {
  font-size: 36px;
}

.display-4.material-symbols-outlined {
  font-size: 3.5rem;
}

.card-title {
  font-weight: bold;
}

.card.card-link {
  text-decoration: none;
  color: inherit;
  border: 1px solid #dee2e6;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e9ecef 100%);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  display: block;
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}

.card.card-link:hover {
  text-decoration: none;
  color: inherit;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.2);
}

.card.card-link[class*="bg-"] {
  background-image: none;
}

.card.card-link.bg-secondary {
  background-color: #e2e3e5 !important;
  color: #212529;
}

.card.card-link.bg-success {
  background-color: #d1e7dd !important;
  color: #212529;
}

.card.card-link.bg-danger {
  background-color: #f8d7da !important;
  color: #212529;
}

.btn-modern {
  background: linear-gradient(135deg, #343a40 0%, #212529 100%);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-modern:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.3);
}

.btn-modern-outline {
  background: transparent;
  color: #343a40;
  border: 2px solid #343a40;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.btn-modern-outline:hover {
  background: linear-gradient(135deg, #343a40 0%, #212529 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.3);
}

/* Utility class for icon-only buttons */
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-icon .material-symbols-outlined {
  color: inherit;
}
