body,
html {
    width: 100vw;
    /* Usamos 100vw para ocupar el 100% del ancho de la ventana */
    min-width: 100vw;
    max-width: 100vw;
    height: 100vh;
    /* Usamos 100vh para ocupar el 100% de la altura de la ventana */
    min-height: 100vh;
    max-height: 100vh;
    text-rendering: optimizeLegibility;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    overflow: hidden;
    --tw-bg-opacity: 1;
    background-color: rgba(31, 33, 35, var(--tw-bg-opacity));
    /* Sintaxis corregida */
    --tw-text-opacity: 1;
    padding: 0;
    margin: 0;
    line-height: inherit;
    display: flex;
    /* Añadido para usar justify-content y align-items */
    justify-content: center;
    align-items: center;
}


.text-gray-700 {
    --tw-text-opacity: 1;
    color: rgb(31 33 35 / var(--tw-text-opacity));
}

.bg-blue-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(5 199 252 / var(--tw-bg-opacity));
}

.rounded-full {
    border-radius: 9999px;
}

.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

.w-full {
    width: 100%;
}

.h-34 {
    height: 34px;
}

.flex {
    display: flex;
}

.z-20 {
    z-index: 20;
}

.pointer-events-auto {
    pointer-events: auto;
}

.text-12 {
    font-size: 12px;
}





