/* Table ordering indicators */
table.table thead th.asc.orderable:after {
  content: " ↓";
  font-size: smaller;
  color: #666;
}

table.table thead th.desc.orderable:after {
  content: " ↑";
  font-size: smaller;
  color: #666;
}

.home-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
