/* Ocultar cursor original */
html,
* {
    cursor: none !important;
}

/*
.logged-in,
.logged-in * {
    cursor: initial !important;
}
*/

#veo-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background-color: #f5f5f5;
    pointer-events: none;
    z-index: 999999999999;
    transition: transform 0.2s;
    /* border-radius, mix-blend-mode y backdrop-filter se aplican desde JS */
}

#veo-cursor.plus,
#veo-cursor.drag {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    background: rgb(255 255 255 / 40%);
}

#veo-cursor svg {
    width: 45%;
}

#veo-cursor span {
    font-size: 5px;
    text-transform: uppercase;
    line-height: 1em;
}

#veo-cursor.no-blend {
    background-color: rgba(0, 0, 0, 0.6) !important;
}

#veo-cursor.is-image {
    transform: scale(10) !important;
}

#veo-cursor img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

#veo-cursor.is-image img {
    border-radius: 0 !important;
}