/* FalciAnne Base Styles - TailwindCSS Ek Stiller */

/* Material Symbols Outlined */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.icon-filled {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Storybook Card Gradient */
.storybook-card {
    background: linear-gradient(135deg, var(--tw-gradient-stops));
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.dark ::-webkit-scrollbar-track {
    background: #1f1f2e;
}

::-webkit-scrollbar-thumb {
    background: #c4b5fd;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a78bfa;
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid #A78BFA;
    outline-offset: 2px;
}

/* Transition defaults */
a, button {
    transition: all 0.2s ease;
}

/* Hide scrollbar but keep functionality (for horizontal scrollers) */
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
