/* VMS Onboarding Tutorial Styles */
#vms-tutorial-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: transparent; z-index: 9998;
    pointer-events: auto;
}
#vms-tutorial-spotlight {
    position: fixed; z-index: 9999;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.72);
    border-radius: 24px; pointer-events: none;
    /* Remove 'all' to prevent lag during scroll */
    transition: opacity 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.4);
}
#vms-tutorial-popover {
    position: fixed; z-index: 10000;
    width: 300px; background: #fff; border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.10);
    padding: 22px 20px 16px;
    animation: vmsFadeInUp 0.3s ease-out;
}
.vms-hidden { display: none !important; }

@keyframes vmsFadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.vms-tut-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 10px;
}
.vms-tut-header span { font-weight: 700; font-size: 1rem; color: #1a237e; }
.vms-tut-body { font-size: 0.88rem; color: #374151; line-height: 1.6; min-height: 50px; padding: 8px 0 12px; }
.vms-tut-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 8px; padding-top: 12px; border-top: 1px solid #f0f0f0; }
