/* Custom overrides and utility styles */

/* Smooth focus outlines for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 3px solid #85c488;
    outline-offset: 3px;
    border-radius: 4px;
}

/* Subtle scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #fdf9ed;
}
::-webkit-scrollbar-thumb {
    background: #b8dfb9;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #85c488;
}

/* Selection color */
::selection {
    background: #dcefe0;
    color: #0d3212;
}
