
/* Lyrics Overlay */
.lyrics-overlay {
    background: rgba(0,0,0,0.8);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    max-height: 400px;
    overflow-y: auto;
    text-align: center;
}

#lyrics-text {
    white-space: pre-wrap;
    line-height: 1.6;
    font-size: 16px;
    color: #e0e0e0;
}

/* Mobile Lyrics */
@media (max-width: 768px) {
    .lyrics-overlay {
        position: fixed;
        top: 60px; /* Below top bar */
        left: 0;
        width: 100%;
        height: calc(100% - 140px); /* Adjust for player bar */
        z-index: 20;
        background: rgba(0,0,0,0.95);
        margin: 0;
        border-radius: 0;
        padding: 30px;
        box-sizing: border-box;
    }
}
