/* File: public/style.css */
body {
    /* font-family: 'Inter', sans-serif; /* Tailwind's 'font-inter' class handles this */
}

/* For overriding Tailwind or for very specific styles not easily done with utilities */
.break-words {
  overflow-wrap: break-word; /* Standard */
  word-wrap: break-word; /* Older browsers */
  -ms-word-break: break-all; /* Internet Explorer */
  word-break: break-word; /* More specific control, often used with break-all for CJK */
}

/* Ensure sticky element doesn't get hidden by parent if parent has overflow hidden, etc. */
.sticky {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    /* top: 1.5rem; /* Tailwind class top-6 */
}