/* Styles for song lyrics pages */
.lyrics-container {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin: 30px 0;
}

.lyrics-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.lyrics-header h2 {
    color: #ff6b00;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.lyrics-header .composer {
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
}

.lyrics-content {
    line-height: 1.8;
}

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

.lyrics-section h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #eee;
}

.lyrics-text {
    font-family: 'Noto Sans', 'Poppins', sans-serif;
    white-space: pre-line;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-left: 4px solid #ff6b00;
    border-radius: 0 10px 10px 0;
}

.lyrics-meaning {
    padding: 15px;
    background-color: #fff9f5;
    border-radius: 10px;
    margin-bottom: 20px;
}

.lyrics-benefits {
    background-color: #f0f8ff;
    border: 1px solid #b3d7ff;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
}

.lyrics-benefits h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

.lyrics-benefits ul {
    list-style-type: disc;
    padding-left: 20px;
}

.lyrics-benefits li {
    margin-bottom: 10px;
}

.lyrics-how-to {
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
}

.lyrics-how-to h3 {
    margin-bottom: 15px;
}

.song-navigation {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
}

.song-navigation a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6b00;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.song-navigation a:hover {
    background-color: #e05a00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.song-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.song-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.song-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #ff6b00;
}

.song-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.song-card .composer {
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.song-card p {
    margin-bottom: 15px;
}

.song-card .btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: #ff6b00;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.song-card .btn:hover {
    background-color: #e05a00;
}

.song-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

@media screen and (max-width: 768px) {
    .song-grid {
        grid-template-columns: 1fr;
    }
}

/* Audio player styles */
.audio-player {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.audio-player h3 {
    margin-bottom: 15px;
    color: #333;
}

.audio-player audio {
    width: 100%;
    margin-bottom: 10px;
}

.audio-player .audio-description {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Download button styles */
.download-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.download-button:hover {
    background-color: #45a049;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.download-button i {
    margin-right: 10px;
}

/* Print button styles */
.print-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2196F3;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 20px 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.print-button:hover {
    background-color: #0b7dda;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.print-button i {
    margin-right: 10px;
}

/* Search box styles */
.search-container {
    margin: 30px 0;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.search-container input:focus {
    outline: none;
    border-color: #ff6b00;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.1);
}

.search-container button {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: #ff6b00;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-container button:hover {
    background-color: #e05a00;
}

/* Filter styles */
.filter-container {
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-button {
    padding: 8px 15px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-button:hover, .filter-button.active {
    background-color: #ff6b00;
    color: white;
    border-color: #ff6b00;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .lyrics-header h2 {
        font-size: 1.8rem;
    }
    
    .lyrics-section h3 {
        font-size: 1.3rem;
    }
    
    .song-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .song-navigation a {
        width: 100%;
        text-align: center;
    }
}
