/* customgabe.com — base styles */
/* Tailwind CDN handles utilities; this file handles the few things it can't */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Essay body — links inside prose */
.essay-body a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #e5e5e5;
  transition: text-decoration-color 0.15s ease;
}
.essay-body a:hover {
  text-decoration-color: #1a1a1a;
}

/* Chat panel scrollbar */
#chat-messages::-webkit-scrollbar {
  width: 4px;
}
#chat-messages::-webkit-scrollbar-track {
  background: transparent;
}
#chat-messages::-webkit-scrollbar-thumb {
  background: #e5e5e5;
  border-radius: 2px;
}
