/* reveal.js-pointer styling - non-intrusive laser pointer */
.cursor-dot, .cursor-dot-outline {
    pointer-events: none !important;
    position: absolute !important;
    top: 0;
    left: 0;
    border-radius: 50% !important;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease-in-out;
    z-index: 9999999 !important;
}

.cursor-dot {
    width: 16px;
    height: 16px;
    background-color: #E63946 !important;
    box-shadow: 0 0 10px #ff2a2a, 0 0 20px rgba(255, 42, 42, 0.8), inset 0 0 4px #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
}

.no-cursor, .no-cursor * {
    cursor: none !important;
}
