/* Add to your theme's style.css */
.lyrics-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Noto Sans Telugu', sans-serif;
}

.lyrics-telugu pre {
    font-family: 'Noto Sans Telugu', 'Gautami', sans-serif;
    font-size: 1em;
    line-height: 1;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .lyrics-container {
        padding: 10px;
    }
    .lyrics-telugu pre {
        font-size: 1em;
    }
}

/* Lyrics Template Styles */
.lyrics-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
}

.lyrics-title {
    font-size: 2em;
    margin-bottom: 10px;
    color: #333;
}

.lyrics-phonetic {
    color: #666;
    font-style: italic;
    font-size: 1em;
    margin-bottom: 30px;
}

.lyrics-divider {
    margin: 30px 0;
    border: 1px solid #ddd;
}

.lyrics-section {
    margin-bottom: 50px;
}

.section-title {
    border-bottom: 3px solid;
    padding-bottom: 10px;
    font-size: 1.5em;
}

.telugu-title {
    color:#333;
    border-color: #FF5722;
}

.english-title {
    color: #333;
    border-color: #2196F3;
}

.telugu-content {
    font-family: 'Noto Sans Telugu', 'Gautami', 'Segoe UI', sans-serif;
    font-size: 1.1em;
    line-height: 1;
    background: #fff4e5;
    padding: 25px;
    border-radius: 10px;
    white-space: pre-wrap;
}

.english-content {
    font-family: 'Courier New', monospace;
    font-size: 1em;
    line-height: 1.5;
    background: #e3f2fd;
    padding: 25px;
    border-radius: 10px;
    white-space: pre-wrap;
}

.lyrics-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #ddd;
    font-size: 1em;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .lyrics-title {
        font-size: 1.5em;
    }
    
    .telugu-content {
        font-size: 1em;
        padding: 15px;
    }
    
    .english-content {
        font-size: 0.9em;
        padding: 15px;
    }
    
    .section-title {
        font-size: 1.2em;
    }
}