/* css/artist_details_css/cifra-content.css.css */
.cifra-selector {
    margin-bottom: 20px;
}

.custom-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background: white;
    cursor: pointer;
}

.custom-select:focus {
    outline: none;
    border-color: #3b82f6;
}

.chords-section {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.chords-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.chords-section pre {
    white-space: pre-wrap;
    font-size: 16px;
    line-height: 1.5;
    max-height: 700px;
    overflow-y: auto;
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
}

.chord {
    color: #d32f2f;
    font-weight: bold;
}

@media (max-width: 768px) {
    .chords-section pre {
        font-size: 14px;
        max-height: 50vh;
    }
}