/* Global selection/copy enablement (clean, static) */
html,
body,
*,
*::before,
*::after {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
    -webkit-touch-callout: default !important;
    -ms-touch-action: auto !important;
    touch-action: auto !important;
}

/* Visible highlight color */
::selection {
    background: rgba(59, 130, 246, 0.35) !important;
    color: #ffffff !important;
}

::-moz-selection {
    background: rgba(59, 130, 246, 0.35) !important;
    color: #ffffff !important;
}