/* Lyrics table styling for logosongv2 */
.lyrics-container {
    /* center the whole block (image + table) */
    display: block;
    width: -moz-fit-content;
    width: -webkit-fit-content;
    width: fit-content;
    margin: 0 auto;
    text-align: left;
}

.lyrics-container img {
    display: block;
    max-width: 100%;
    height: auto;
}

.lyrics-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    /* allow col widths to be fixed percentages */
    font-size: 1rem;
    /* base size, adjust as needed */
    color: #ffffff;
    background: #0d0d0d;
    /* table background as requested */
}

.lyrics-table td {
    border: none;
    padding: 2px 2px;
    /* reduced vertical+horizontal padding to compress spacing */
    vertical-align: top;
    word-break: break-word;
}

.lyrics-table col.col-num {
    width: 10%;
}

.lyrics-table col.col-left {
    width: 45%;
}

.lyrics-table col.col-right {
    width: 45%;
}

.lyrics-table td:first-child {
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    /* slightly larger number/marker */
}

.lyrics-table td:nth-child(2),
.lyrics-table td:nth-child(3) {
    font-size: 1.25rem;
    /* larger lyric text */
    line-height: 1.3;
    /* tighter line height to reduce vertical space */
}

@media (max-width: 600px) {
    .lyrics-table {
        font-size: 1.05rem;
    }

    .lyrics-table td {
        padding: 3px 6px;
    }

    .lyrics-table td:nth-child(2),
    .lyrics-table td:nth-child(3) {
        font-size: 1.05rem;
        line-height: 1.3;
    }
}