body {
  font-family: 'Inter', sans-serif;
}
.font-digital {
  font-family: 'Chakra Petch', sans-serif;
}
.custom-scrollbar::-webkit-scrollbar {
  width: 10px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: #e5e7eb; /* gray-200 */
}
.dark .custom-scrollbar::-webkit-scrollbar-track {
  background: #1e293b; /* slate-800 */
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #9ca3af; /* gray-400 */
  border-radius: 5px;
}
.dark .custom-scrollbar::-webkit-scrollbar-thumb {
  background: #475569; /* slate-600 */
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #6b7280; /* gray-500 */
}
.dark .custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #64748b; /* slate-500 */
}
.hidden {
  display: none;
}