body {
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard", "Noto Sans KR", sans-serif;
}

#region-group-filters::-webkit-scrollbar,
#category-filters::-webkit-scrollbar {
  height: 4px;
}
#region-group-filters::-webkit-scrollbar-thumb,
#category-filters::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 2px;
}

.restaurant-card {
  animation: fadeIn 0.25s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

#detail-modal-content {
  animation: slideUp 0.2s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(16px); opacity: 0.6; }
  to { transform: translateY(0); opacity: 1; }
}
