/* Text Selection Highlighting - Custom Styles for Frontend */

/* Standard selection styling */
::selection {
    background-color: #0066FF !important;
    color: #ffffff !important;
}

/* Firefox-specific selection styling */
::-moz-selection {
    background-color: #0066FF !important;
    color: #ffffff !important;
}

/* Webkit-specific selection (Safari, Chrome) */
::-webkit-selection {
    background-color: #0066FF !important;
    color: #ffffff !important;
}

/* Apply to all elements */
* ::selection {
    background-color: #0066FF !important;
    color: #ffffff !important;
}

* ::-moz-selection {
    background-color: #0066FF !important;
    color: #ffffff !important;
}

/* Specific overrides for inputs and textareas */
input::selection,
textarea::selection,
[contenteditable]::selection {
    background-color: #0066FF !important;
    color: #ffffff !important;
}

input::-moz-selection,
textarea::-moz-selection,
[contenteditable]::-moz-selection {
    background-color: #0066FF !important;
    color: #ffffff !important;
}
