/* Reset or Next Player button styles */
#reset-button {
    background-color: #ffc107; /* Yellow background */
    color: #000; /* Black text */
    text-shadow: 
        -1px -1px 0 #000,  
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000; /* 1px black outline around the text */
}

#reset-button:hover {
    background-color: #e0a800; /* Darker yellow on hover */
}