/* 
  Custom styles for AI Prompt Hub 
  Note: Most styling is handled via Tailwind CSS utility classes in index.html.
*/

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #030712; /* gray-950 */
}

::-webkit-scrollbar-thumb {
    background: #1f2937; /* gray-850 */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #374151; /* gray-700 */
}

/* Base resets that Tailwind CDN might miss or we want strictly enforced */
html {
    scroll-behavior: smooth;
}

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

/* FAQ Icon rotation logic */
.faq-btn[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}