﻿/* Tour Styles */
.tour-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    display: none;
}

.tour-highlight {
    position: relative;
    z-index: 9999;
    box-shadow: 0 0 0 2px var(--mainColor), 0 0 20px rgba(0, 123, 255, 0.5) !important;
    border-radius: 4px;
}

.tour-tooltip {
    position: absolute;
    background: white;
    border-radius: 8px;
    padding: 20px;
    max-width: 350px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
}

    .tour-tooltip::before {
        content: '';
        position: absolute;
        width: 0;
        height: 0;
        border-style: solid;
    }

    .tour-tooltip.bottom::before {
        top: -10px;
        left: 20px;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid white;
    }

    .tour-tooltip.top::before {
        bottom: -10px;
        left: 20px;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid white;
    }

    .tour-tooltip.left::before {
        right: -10px;
        top: 20px;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 10px solid white;
    }

    .tour-tooltip.right::before {
        left: -10px;
        top: 20px;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-right: 10px solid white;
    }

.tour-content h3 {
    margin: 0 0 10px 0;
    color: #333;
}

.tour-content p {
    margin: 0 0 15px 0;
    color: #666;
    line-height: 1.4;
}

.tour-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

    .tour-buttons button {
        padding: 8px 15px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
    }

.tour-btn-prev {
    background-color: #6c757d;
    color: white;
}

.tour-btn-next {
    /*background-color: #007bff;
    color: white;*/
    background-color: var(--secColor);
    color: var(--mainColor);
}

.tour-btn-skip {
    background-color: transparent;
    color: #6c757d;
    text-decoration: underline;
}

.tour-progress {
    font-size: 12px;
    color: #888;
}

.start-tour-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #28a745;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    z-index: 1000;
    font-weight: bold;
}
