/* Lyrics Overlay Styles */
#lyricsOverlay {
    position: fixed;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    max-height: 75vh;
    background-color: white;
    border: 3px solid #2F42B8;
    border-radius: 8px;
    display: none;
    flex-direction: column;
	flex-wrap: nowrap;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
}

.lyrics-header {
    background-color: #2F42B8;
    color: white;
    padding: 15px;
    font-family: Arial, sans-serif;
    font-size: 16pt;
    font-weight: bold;
    text-align: center;
    border-radius: 5px 5px 0 0;
}

.lyrics-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    font-size: 12pt;
    line-height: 1.6;
}

.lyrics-footer {
    padding: 15px;
    text-align: center;
    border-top: 2px solid #2F42B8;
}

.stop-button {
    background-color: #CC0000;
    color: white;
    border: 2px solid black;
    border-radius: 5px;
    padding: 10px 30px;
    font-size: 14pt;
    cursor: pointer;
    font-weight: bold;
}

.stop-button:hover {
    background-color: #990000;
}
