﻿
.tour-overlay {
    position: fixed;
    inset: 0;
    z-index: 19998;
    pointer-events: none;
}

.tour-highlight {
    position: fixed;
    z-index: 19999;
    border-radius: 10px;
    box-shadow: 0 0 0 4000px rgba(0,0,0,.55);
    pointer-events: none;
    transition: all .3s ease;
}

.tour-tooltip {
    position: fixed;
    z-index: 20000;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,.22);
    padding: 18px 20px 14px;
    width: 300px;
    font-family: inherit;
    transition: all .3s ease;
}

.tour-tooltip-title {
    font-size: .85rem;
    font-weight: 800;
    color: #0d6e6e;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.tour-tooltip-body {
    font-size: .79rem;
    color: #374151;
    line-height: 1.55;
    margin-bottom: 14px;
}

.tour-tooltip-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.tour-step-dots {
    display: flex;
    gap: 5px;
}

.tour-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d1d5db;
}

    .tour-dot.active {
        background: #0d6e6e;
    }

.tour-btn-skip {
    font-size: .74rem;
    color: #9ca3af;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px 0;
    font-family: inherit;
}

    .tour-btn-skip:hover {
        color: #6b7280;
    }

.tour-btn-next {
    background: #0d6e6e;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 7px 18px;
    font-size: .8rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}

    .tour-btn-next:hover {
        background: #0a5858;
    }

.tour-tooltip-body br {
    display: block;
    margin-top: 6px;
    content: "";
}
