/* Base font size increase for better readability */
html {
  font-size: 112.5%; /* 18px base instead of 16px - scales all text proportionally */
}

/* Additional scaling for artifacts section with fixed pixel sizes */
#artifacts [data-artifacts-root] {
  font-size: 115%; /* Further increase for artifact content */
}

/* Custom scrollbar styles */
.thin-scroll::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.thin-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.thin-scroll::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.7);
  border-radius: 999px;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
