a.text-decoration-none:hover {
    text-decoration: underline !important;
}


.note-bar .note-btn {
    min-width: 36px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.note-bar .note-btn.active {
    background-color: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
    box-shadow: 0 0 5px rgba(13, 110, 253, 0.4);
}

/* ========================= */
/* 🎼 Şarkı Alanı – spacing tam koruma */
/* ========================= */

pre.song-display {
    font-family: "Open Sans", sans-serif !important;
    white-space: pre;
    letter-spacing: 0.2px;
    /* spacing stabilizer */
    padding: 20px 15px 0 15px;
    font-size: 13px;
    font-weight: 400;
    line-height: 19px;
    /* sabit hizalama için px */
    overflow-x: auto;
    color: #000;
    word-break: normal;
    word-spacing: 0;
    background: #fff;
    tab-size: 4;
}

span.ch {
    display: inline-block;
    vertical-align: bottom;
    min-width: 22px;
    text-align: left;
    font-weight: 600;
    color: #0d6efd;
}

/* 🎨 Akor renkleri */
.ch {
    font-weight: 600;
    color: #0d6efd;
}



/* 📱 Küçük ekran ayarları */
@media (max-width: 768px) {
    h2.fw-bold {
        font-size: 1.25rem;
    }

    .note-bar .note-btn {
        font-size: 0.8rem;
        min-width: 30px;
        padding: 2px 4px;
    }

    .song-display {
        font-size: 15px;
    }
}

/* === Etiket Rozetleri === */
.badge.hover-scale {
    transition: all 0.2s ease-in-out;
    cursor: default;
}

.badge.hover-scale:hover {
    transform: scale(1.07);
    background-color: #f8f9fa;
    color: #0d6efd;
    border-color: #0d6efd;
}



/* 🎸 Akor baloncuğu */
.chord-tooltip {
    position: absolute;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    z-index: 9999;
    font-size: 13px;
    color: #333;
    min-width: 120px;
    text-align: center;
    transition: opacity 0.15s ease, transform 0.15s ease;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
}

.chord-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.chord-tooltip::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    filter: drop-shadow(0 -1px 1px rgba(0, 0, 0, 0.1));
}

.chord-tooltip svg {
    width: 120px;
    height: auto;
    margin-top: 4px;
}



/* 🎹 Şarkıyı iki sütun halinde göster */
pre.song-display.split-mode {
    column-count: 2;
    column-gap: 2rem;
    white-space: pre-wrap;
    /* Satır taşmalarını düzgün kır */
}

/* 📱 Mobilde asla ikiye bölme olmasın */
@media (max-width: 992px) {
    #splitViewBtn {
        display: none !important;
    }

    pre.song-display.split-mode {
        column-count: 1 !important;
    }
}
