/* 99s Agency theme — supplements Tailwind CDN. Tailwind provides 95% of styling. */

[x-cloak] {
    display: none !important;
}

/* Prevent FOUC for sidebar slide-in animation */
@media (max-width: 767px) {
    aside.fixed { will-change: transform; }
}

/* Smooth focus ring color in both modes */
input:focus, select:focus, textarea:focus, button:focus-visible {
    outline-offset: 2px;
}

/* Smooth scrollbar in main content (Webkit) */
main::-webkit-scrollbar { width: 8px; height: 8px; }
main::-webkit-scrollbar-track { background: transparent; }
main::-webkit-scrollbar-thumb { background: rgb(156 163 175 / 0.3); border-radius: 4px; }
main::-webkit-scrollbar-thumb:hover { background: rgb(156 163 175 / 0.5); }

/* Form elements normalization for dark mode */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select,
textarea {
    color-scheme: light dark;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
