.wbk_featureTour__blocker {
    position: fixed;
    inset: 0;
    z-index: 999990;
    background: transparent;
}

.wbk_featureTour__spotlight {
    position: fixed;
    z-index: 999999;
    border-radius: 6px;
    box-shadow: 0 0 0 9999px rgba(15, 23, 42, 0.55);
    pointer-events: none;
    transition: top 0.2s ease, left 0.2s ease, width 0.2s ease, height 0.2s ease;
}

.wbk_featureTour__tooltip {
    position: fixed;
    z-index: 999999;
    width: min(340px, calc(100vw - 32px));
    background: #fff;
    border-radius: 12px;
    padding: 20px 20px 16px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.18);
    font-family: 'Ubuntu', sans-serif;
    transition: top 0.2s ease, left 0.2s ease;
}

.wbk_featureTour__caret {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: -2px -2px 4px rgba(15, 23, 42, 0.06);

    &--right {
        left: -7px;
        top: 28px;
    }

    &--bottom {
        top: -7px;
        left: 50%;
        margin-left: -7px;
        box-shadow: -2px -2px 4px rgba(15, 23, 42, 0.06);
    }
}

.wbk_featureTour__closeButton {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 6px;

    img {
        width: 12px;
        height: 12px;
        opacity: 0.55;
    }

    &:hover:not(:disabled) {
        background: #f3f4f6;

        img {
            opacity: 0.85;
        }
    }

    &:disabled {
        cursor: not-allowed;
        opacity: 0.5;
    }
}

.wbk_featureTour__message {
    margin: 0 28px 16px 0;
    font-size: 15px;
    line-height: 1.5;
    color: #374151;
}

.wbk_featureTour__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.wbk_featureTour__confirmButton {
    border: none;
    border-radius: 8px;
    background: #14b8a9;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    cursor: pointer;
    transition: background 0.2s ease;

    &:hover:not(:disabled) {
        background: #0d9488;
    }

    &:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }
}

.wbk_featureTour__skipButton {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 13px;
    line-height: 1.4;
    color: #6b7280;
    cursor: pointer;
    font-family: inherit;

    &:hover:not(:disabled) {
        color: #374151;
        text-decoration: underline;
    }

    &:disabled {
        cursor: not-allowed;
        opacity: 0.6;
    }
}
