/* Add a clear, visible outline for focused elements on the player page */
/* This file is specifically for the player page (the one provided in the latest prompt) */

/* Target elements that can receive focus via tabindex */
[tabindex="0"]:focus {
    outline: 0px solid transparent; /* White outline for better visibility on dark backgrounds */
    outline-offset: 4px; /* Space between element and outline */
}