/* Modern rounded theme with micro-interactions */

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: rgba(0, 0, 0, 0.1);
    color: inherit;
}

body.dark-mode ::selection {
    background: rgba(255, 255, 255, 0.2);
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid rgba(0, 0, 0, 0.3);
    outline-offset: 2px;
    border-radius: 4px;
}

body.dark-mode *:focus-visible {
    outline-color: rgba(255, 255, 255, 0.4);
}
