/* 
  Webfriends Vanilla CSS 
  Warning: This file was completely cleared during the Tailwind JIT migration. 
  All layout, colors, grids, shadows, typography and utility classes are now governed directly by Tailwind CSS inline within the index.html via https://cdn.tailwindcss.com.
  We leave this style.css file exclusively for highly specialized overrides or scrollbar customization that aren't natively supported by Tailwind utility syntax.
*/

/* Custom Scrollbar Apple-style override */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: #F5F5F7; 
}
::-webkit-scrollbar-thumb {
    background: #d2d2d7; 
    border-radius: 6px;
    border: 3px solid #F5F5F7;
}
::-webkit-scrollbar-thumb:hover {
    background: #86868b;
}

/* Custom modifier for strict active intersection states toggled by Javascript */
.active-text {
    opacity: 1 !important;
}
