/* Custom overrides and enhancements */

/* Smooth focus states */
a:focus-visible, button:focus-visible {
    outline: 2px solid #dce8d8;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Selection color */
::selection {
    background: #4a7c38;
    color: #fdfcf8;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f5f0e4;
}
::-webkit-scrollbar-thumb {
    background: #8fb878;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #6a9a52;
}
