/* 
  Custom CSS for Eastern Healers Council
  Note: Core layout and styling are handled by Tailwind CSS utility classes.
  This file is reserved for base overrides, specific animations, or external library integration.
*/
html {
    scroll-behavior: smooth;
}
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* Ensure images cannot be dragged to protect visual assets slightly */
img {
    -webkit-user-drag: none;
    user-select: none;
}
/* Custom Scrollbar for a premium feel */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #FDF8EF;
}
::-webkit-scrollbar-thumb {
    background: #1F6B4A;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #173F36;
}