/* /styles/digitalBusinessTour.css */
/* Digital Business tour styles rebuilt to match the Art Studio tour */

.vm-tour-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1040;
}

.vm-tour-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    border: 1px solid #b08a48;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    z-index: 1070;
    width: 90%;
    max-width: 500px;
}

/* --- KILL ALL GLOBAL BORDERS ON THE POP-UP CONTAINER --- */
.vm-tour-container {
    border: 0 !important;
    outline: none !important;
}

.vm-tour-highlight {
    position: relative !important;
    z-index: 1060 !important;
    background-color: transparent !important;
    /* Replaced the calf-shit gold border with a clean, soft white glow */
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8) !important; 
    border-radius: 4px;
}

/* --- THE GOLD BUTTONS YOU ORIGINALLY WANTED (No borders) --- */
button.tour-custom-btn {
    background-color: #b08a48 !important; /* Back to Gold */
    color: #ffffff !important; /* White text */
    border: 0 !important; /* Force kill gold border */
    outline: none !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    border-radius: 6px !important;
    padding: 8px 24px !important;
    font-size: 14px !important;
    cursor: pointer !important;
}

button.tour-custom-btn:hover {
    background-color: #96753d !important; /* Darker gold on hover */
    color: #ffffff !important;
}

button.tour-custom-skip {
    background-color: transparent !important;
    color: #6c757d !important;
    border: 0 !important; /* Force kill gold border */
    box-shadow: none !important;
    padding: 4px 8px !important;
    cursor: pointer !important;
    text-decoration: underline !important;
}

/* --- ARROW AND SPOTLIGHT FIX --- */
.tour-btn-spotlight {
    position: relative !important;
    background-color: #b08a48 !important;
    color: #ffffff !important;
    /* Removed the ugly gold outer rings, keeping a clean shadow */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important; 
    border: 0 !important; /* Force kill border */
    border-radius: 8px !important;
    z-index: 1060 !important;
    transition: all 0.3s ease !important;
}


/* The Arrow Pointing up to the button */
.tour-btn-spotlight::after {
    content: '↑';
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    font-size: 40px !important;
    color: #ffffff !important; /* White arrow so it stands out cleanly */
    font-weight: 900 !important;
    line-height: 1 !important;
    pointer-events: none !important;
    z-index: 1061 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5) !important;
}