/* ============================================================================
 * DanceAxis Analytics - Tutorial Overlay
 * ============================================================================ */

/* Backdrop（暗転なし・非表示のまま） */
#da-tutorial-backdrop {
    display: none;
}

/* Highlighted target element */
.da-tutorial-highlight {
    position: relative;
    z-index: 9100 !important;
    box-shadow: 0 0 0 3px #7eb8ff !important;
    border-radius: 6px;
    pointer-events: auto;
}

/* Tooltip bubble */
#da-tutorial-tooltip {
    display: none;
    position: fixed;
    z-index: 9200;
    background: #1a1e2e;
    border: 1.5px solid #7eb8ff;
    border-radius: 10px;
    padding: 16px 18px 14px;
    max-width: 300px;
    min-width: 220px;
    color: #e8eaf6;
    font-size: 14px;
    line-height: 1.6;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    pointer-events: auto;
}
#da-tutorial-tooltip.active {
    display: block;
}

/* Arrow */
#da-tutorial-tooltip::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #1a1e2e;
    border-left: 1.5px solid #7eb8ff;
    border-top: 1.5px solid #7eb8ff;
    transform: rotate(45deg);
}
#da-tutorial-tooltip.arrow-top::before {
    top: -6px;
    left: 24px;
}
#da-tutorial-tooltip.arrow-top-right::before {
    top: -6px;
    right: 24px;
    left: auto;
}
#da-tutorial-tooltip.arrow-bottom::before {
    bottom: -6px;
    left: 24px;
    transform: rotate(225deg);
}
#da-tutorial-tooltip.arrow-bottom-right::before {
    bottom: -6px;
    right: 24px;
    left: auto;
    transform: rotate(225deg);
}
#da-tutorial-tooltip.arrow-left::before {
    left: -6px;
    top: 20px;
    transform: rotate(-45deg);
}

/* Step counter */
.da-tutorial-step-counter {
    font-size: 11px;
    color: #7eb8ff;
    margin-bottom: 6px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* Instruction text */
.da-tutorial-instruction {
    margin-bottom: 14px;
}

/* Buttons row */
.da-tutorial-btns {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    align-items: center;
}

#da-tutorial-btn-next {
    background: #7eb8ff;
    color: #0d1117;
    border: none;
    border-radius: 6px;
    padding: 7px 18px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
#da-tutorial-btn-next:hover {
    background: #a8d0ff;
}

#da-tutorial-btn-skip {
    background: transparent;
    color: #888;
    border: none;
    font-size: 12px;
    cursor: pointer;
    padding: 7px 4px;
    text-decoration: underline;
}
#da-tutorial-btn-skip:hover {
    color: #bbb;
}

/* Progress dots */
.da-tutorial-dots {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-right: auto;
}
.da-tutorial-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #333;
    transition: background 0.2s;
}
.da-tutorial-dot.active {
    background: #7eb8ff;
}
.da-tutorial-dot.done {
    background: #4a8fe8;
}
