/* css/tour.css */
#tour-overlay, #tour-highlight {
    transition: all 0.3s ease-in-out;
}

#tour-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 7999;
    display: none;
}

#tour-highlight {
    position: fixed;
    z-index: 8000;
    border-radius: 6px;
    pointer-events: none;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.7);
    border: 2px solid #3b82f6; /* Tailwind blue-500 */
    display: none;
}

#tour-tooltip {
    position: fixed;
    z-index: 8001;
    background-color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    width: 300px;
    max-width: 90vw;
    display: none;
    border: 1px solid #e5e7eb;
}

#tour-tooltip-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

#tour-tooltip-text {
    font-size: 0.9rem;
    color: #4b5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

#tour-tooltip-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e5e7eb;
    padding-top: 0.75rem;
    margin-top: 0.5rem;
}

#tour-step-counter {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

#tour-tooltip-footer button {
    border: none;
    border-radius: 0.375rem;
    padding: 0.5rem 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

#tour-next-btn {
    background-color: #3f51b5; /* var(--primary-color) */
    color: white;
}

#tour-next-btn:hover {
    background-color: #313f8c;
}

#tour-end-btn {
    background-color: #e5e7eb;
    color: #374151;
}

#tour-end-btn:hover {
    background-color: #d1d5db;
}