.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: #f8f9fb;
  color: #2b3438;
}
h1, h2, h3, .font-headline {
  font-family: 'Manrope', sans-serif;
}
.custom-scrollbar::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #dbe4ea;
  border-radius: 10px;
}
.glass-overlay {
  background: rgba(241, 244, 247, 0.8);
  backdrop-filter: blur(20px);
}
/* Expanded detail row */
.expanded-content {
  animation: slideDown 0.3s ease-out forwards;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Action dropdown */
.action-menu {
  display: none;
}
.action-menu.active {
  display: block;
}
