﻿



/* Importamos la fuente Roboto desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');




html, body{
font-size: 14px;
}
table
{
    font-size: inherit;
}


/* Aplica la fuente Roboto a todo el documento */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Evita cualquier desplazamiento */
    height: 100%;
    background-image: url('../img/bg1.jpg'); /* Reemplaza con la ruta de tu imagen */
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; /*Opcional: hace que la imagen se mantenga fija al hacer scroll */

    color: var(--color-blue_dark-100-90) !important;
}

input
{
    color: var(--color-blue_dark-100-90) !important;;
}

select {
    color: var(--color-blue_dark-100-90) !important;
}




a {
    color: var(--color-blue_medium-100-90);
    text-decoration: none;
    font-weight: 100;
    /* text-decoration: underline; */ /*centennials*/
    text-shadow: 1px 1px 2px var(--color-black-10-100);
    transition: all 0.3s ease;
    cursor: pointer;
}

a:hover {
    color: var(--color-blue_dark-100-80);
    text-shadow: 3px 3px 6px var(--color-black-50-100);
    text-decoration: underline; /* opcional */
}





::-webkit-scrollbar {
    width: 12px; /* Cambia el ancho en píxeles */
    
}

/* Fondo del track */
::-webkit-scrollbar-track {
    background: var(--color-gray_light-100-12); /* Color de fondo */
    border-radius: 5px;
}

/* Color del thumb (barra deslizante) */
::-webkit-scrollbar-thumb {
    background: var(--color-gray_light-100-83);
    border-radius: 4px;
}

    /* Cambia el color cuando se pasa el mouse */
    ::-webkit-scrollbar-thumb:hover {
        background: var(--color-gray_medium-100-85);
    }

/* Scrollbar personalizado global */
*::-webkit-scrollbar {
    width: 16px; /* Ancho del scrollbar */
    height: 16px; /* Alto del scrollbar horizontal */
}


*::-webkit-scrollbar-track {
    background: var(--color-blue_light-100-05); /* Fondo del track */
}

*::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--color-blue_light-100-35), var(--color-blue_medium-100-80)); /* Degradado azul */
    border-radius: 4px;
    border: 2px solid var(--color-blue_light-100-05); /* Borde alrededor del thumb */
}

    *::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, var(--color-blue_medium-100-80), var(--color-blue_dark-100-90)); /* Color más oscuro al pasar el mouse */
    }

/* Opcional: Para Firefox */
/** {
    scrollbar-width: thin;
    scrollbar-color: #0066cc aliceblue;*/  /*Thumb y track */
/*}*/




/*version oscura*/
/** {
    scrollbar-width: thin;
    scrollbar-color: #b9b9b9 #000000;
}*/
/*version oscura*/



/* Estilo específico para <select> */
select::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

select::-webkit-scrollbar-thumb {
    background-color: var(--color-blue_medium-100-90); /* Color específico para <select> */
    border-radius: 6px;
}

select::-webkit-scrollbar-track {
    background-color: var(--color-gray_light-100-24); /* Fondo específico para <select> */
}














/* Estilos iniciales del div de la izquierda */
#leftDiv1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 90%;
    height: 100%;
    background-color: var(--color-black-100-100); /* Fondo negro con 60% de transparencia */
    color: var(--color-white-100-100);
    text-align: center;
    padding-top: 20%;
    z-index: 9998;
    transform: translateX(-150%); /* Inicialmente fuera de pantalla a la izquierda */
    transition: transform 1s ease;
}   
/* Clase para aplicar el desenfoque */
.blurred {
    /*backdrop-filter: blur(10px);
    transition: backdrop-filter 0.1s ease;*/ /* Transición para el desenfoque */
}




/* Estilos iniciales del div de la derecha */
#rightDiv1 {
    position: fixed;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background-color: var(--color-blue_medium-100-75); /* Fondo azul atractivo */
    color: var(--color-white-100-100);
    text-align: center;
    padding-top: 20%;
    z-index: 9999;
    transform: translateX(100%); /* Inicialmente fuera de pantalla a la derecha */
    transition: transform 1s ease;
}

    /* Efecto cuando ambos divs llegan al centro */
    #leftDiv1.center, #rightDiv1.center {
        transform: translateX(0);
    }

/* Animación de rebote cuando los divs se encuentran */
@keyframes bounce {
    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px); /* Movimiento hacia la derecha */
    }
}

@keyframes bounceLeft {
    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-10px); /* Movimiento hacia la izquierda */
    }
}

/* Efecto de rebote para el div de la derecha */
#rightDiv1.bounce {
    animation: bounce 0.5s ease-in-out;
}

/* Efecto de rebote para el div de la izquierda */
#leftDiv1.bounce {
    animation: bounceLeft 0.5s ease-in-out;
}
















/* General styles for the login container */
/*.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
}

.login-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
}

.input-container {
    position: relative;
    margin-bottom: 30px;
}

.input-container2 {
    margin-bottom: 45px;
    display: flex;
    justify-content: space-between;

}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    padding-left: 5px;
    border: none;
    border-bottom: 2px solid #aaa;
    background: none;
    outline: none;
    transition: border-color 0.3s;
}

    .input1:focus {
        border-bottom: 2px solid #3498db;
    }

.label1 {
    position: absolute;
    left: 5px;
    top: 10px;
    color: #aaa;
    font-size: 16px;
    pointer-events: none;
    transition: 0.3s ease all;
}

.input1 {
    top: -20px;
    font-size: 12px;
    color: #3498db;
}*/

/*.login-button {
    width: 100%;
    padding: 10px;
    background-color: #3498db;
    color: white;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

    .login-button:disabled {
        background-color: #A0A0A0;*/ /* Color de fondo gris */
        /*color: #FFFFFF;*/ /* Color de texto */
        /*cursor: not-allowed;*/ /* Cambia el cursor a "no permitido" */
        /*opacity: 0.6;*/ /* Opacidad reducida */
    /*}

    .login-button:hover {
        transform: scale(1.05);*/ /* Aumenta el tamaño al hacer hover */
    /*}*/

    /* Efecto al hacer clic */
    /*.login-button:active {
        transform: scale(0.95);*/ /* Reduce el tamaño ligeramente al hacer clic */
        /*background-color: #2980b9;*/ /* Cambia el color temporalmente para dar retroalimentación */
    /*}

.links-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.forgot-password, .create-account {
    color: #3498db;
    text-decoration: none;
}

    .forgot-password:hover, .create-account:hover {
        text-decoration: underline;
    }




.contenedor_login {
background-color:white;
width:80%;
box-sizing:border-box;
padding:30px;
display:inline-block;
}*/



.glup {
    transition: transform 0.2s;
}
.glup:hover {
    transform: scale(1.05);
}




/* Botón estilizado con degradado azul */
.btnblue {
    background: linear-gradient(to bottom, var(--color-blue_medium-100-75), var(--color-blue_dark-100-80)); /* Degradado de azul */
    color: var(--color-white-100-100); /* Color del texto en blanco */
    border: none;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 4px; /* Bordes redondeados */
    cursor: pointer;
    box-shadow: 0 4px 6px var(--color-black-10-100); /* Sombra sutil */
    transition: all 0.2s ease;
    width: 100%;
    user-select: none; /* evita seleccionar texto */
    -webkit-user-select: none; /* Safari / iOS */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none;
}

.no-select
{
   user-select: none !important; /* evita seleccionar texto */
    -webkit-user-select: none !important; /* Safari / iOS */
    -moz-user-select: none !important; /* Firefox */
    -ms-user-select: none !important;
      pointer-events: none;


}

.btnblue i {
    margin-right: 8px; /* Espacio entre el ícono y el texto */
}

    .btnblue:hover {
        background: linear-gradient(to bottom, var(--color-blue_dark-100-80), var(--color-blue_dark-100-80)); /* Degradado más oscuro al hacer hover */
        box-shadow: 0 6px 8px var(--color-black-10-100);
        transform: scale(1.032);
    }

    .btnblue:active {
        /*background: linear-gradient(to bottom, #1f4875, #163960);*/
        transform: translateY(0); /* Vuelve a su posición original */
        box-shadow: 0 2px 4px var(--color-black-10-100);
    }
/* Estilo para el enfoque (focus) */
    .btnblue:focus {
        outline: none; /* Quitar el borde predeterminado */
        box-shadow: 0px 0px 8px var(--color-green_medium-80-75); /* Resaltar con verde */
    }

/* Deshabilitado */
.btnblue:disabled,
.btnblue[disabled] {
    background-color: var(--color-gray_light-100-35) !important; /* Color gris */
    cursor: not-allowed; /* Mostrar que no se puede hacer clic */
    box-shadow: none; /* Sin sombra */
    transition:none;
}




.btngreen {
    background: linear-gradient(to bottom, var(--color-green_medium-100-75), var(--color-green_dark-100-95)); /*Verde suave */
    color: var(--color-white-100-100); /*Texto blanco */
    border: none; /*Sin bordes */
    border-radius: 3px; /*Bordes redondeados*/
    padding: 10px 20px; /*Espaciado interno*/
    font-size: 14px; /*Tamaño de texto*/

    cursor: pointer; /*Cursor de clic */
    transition: all 0.2s ease;
    box-shadow: 0px 4px 6px var(--color-black-10-100); /*Sombra sutil */
    width: 100%;
}


/*version oscura*/
/*.btngreen {
    background-color: #4b4848; 
    color: white; 
    border: none; 
    border-radius: 3px; 
    padding: 10px 20px; 
    font-size: 14px; 
    cursor: pointer; 
    transition: all 0.2s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
    width: 100%;
}*/
/*version oscura*/




    .btngreen i {
        margin-right: 8px; /* Espacio entre el ícono y el texto */
    }

    /* Estilo para hover */
    .btngreen:hover {
        background-color: var(--color-green_medium-100-75); /*Verde más oscuro */
        box-shadow: 0 6px 8px var(--color-black-10-100);
        transform: scale(1.032);
    }


    /*version oscura*/
    /*.btngreen:hover {
        background-color: #444444; 
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
        transform: scale(1.032);
    }*/
    /*version oscura*/

    /* Estilo para el enfoque (focus) */
    .btngreen:focus {
        outline: none; /* Quitar el borde predeterminado */
        box-shadow: 0px 0px 8px var(--color-green_medium-80-75); /* Resaltar con verde */
    }

    /* Deshabilitado */
    .btngreen:disabled {
        background-color: var(--color-gray_light-100-35); /* Color gris */
        cursor: not-allowed; /* Mostrar que no se puede hacer clic */
        box-shadow: none; /* Sin sombra */
    }

    .btngreen:active {
        transform: scale(0.98); /* Simula un clic presionado */
    }


















.shadow1 {
    box-shadow: 0 4px 15px var(--color-black-30-100); /* Sombra suave */
    transition: box-shadow 0.3s ease, transform 0.3s ease; /* Transición suave */
}


.icon {
    position: absolute; /* Permite que el div se posicione en relación a la pantalla */
    background-color: var(--color-white-100-100); /* Color de fondo */
    border: 2px solid var(--color-blue_medium-100-75); /* Bordes */
    border-radius: 10px; /* Bordes redondeados */
    padding: 20px; /* Espaciado interno */
    box-shadow: 0 4px 15px var(--color-black-30-100); /* Sombra suave */
    cursor: grab; /* Cursor de mano para indicar que se puede mover */
    transition: box-shadow 0.3s ease; /* Transición suave para la sombra */
}

    .icon:active {
        cursor: grabbing; /* Cambia el cursor cuando se está arrastrando */
        box-shadow: 0 8px 30px var(--color-black-30-100); /* Sombra más intensa al arrastrar */
    }









.floating-menu {
    position: fixed;
    top: 10px;
    right: 150px;
    width: 30px; /* Ancho del botón de menú */
    height: 30px; /* Alto del botón de menú */
    background-color: var(--color-blue_medium-100-75); /* Color de fondo */
    color: var(--color-white-100-100); /* Color del icono */
    border-radius: 50%; /* Forma circular */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--color-black-30-100);
    transition: transform 0.2s ease;
    z-index: 1000;
}

    .floating-menu:hover {
        transform: scale(1.1); /* Efecto de escala al pasar el mouse */
    }

.menu {
    position: fixed;
    top: 10px;
    right: 50px; /* Iniciar a la derecha del botón de menú */
    width: 150px; /* Ancho del menú */
    background-color: var(--color-white-100-100); /* Color de fondo del menú */
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--color-black-30-100);
    display: none; /* Oculto por defecto */
    transition: transform 0.3s ease; /* Animación suave */
}

.menu-items {
    display: flex;
    flex-direction: column; /* Coloca los items uno debajo del otro */
}

.menu-item {
    padding: 10px 15px; /* Espaciado interno */
    cursor: pointer; /* Cambia el cursor a mano */
    color: var(--color-blue_medium-100-75); /* Color del texto */
    display: flex; /* Flex para alinear icono y texto */
    align-items: center; /* Centrar verticalmente */
    transition: transform 0.2s ease, text-shadow 0.2s ease; /* Transiciones suaves */
}

    .menu-item:hover {
        transform: scale(1.1); /* Efecto de escala al pasar el mouse */
        text-shadow: 1px 1px 5px var(--color-black-30-100); /* Sombra de texto */
    }

    .menu-item i {
        margin-right: 8px; /* Espacio entre el icono y el texto */
    }



h1 {
    color: darkslateblue; /* Asegúrate de que el color del texto sea apropiado */
    text-shadow: 2px 2px 5px var(--color-black-50-100); /* Sombra de texto */
}




.div_message {
    height: 40px;
    color: var(--color-red_medium-100-65);
}


#Ins {
    bottom: 0;
    position: absolute;
    display: none;
    width: 300px;
    height: 200px;
    background-color: var(--color-yellow_light-100-05);
    border: solid 2px var(--color-blue_dark-100-80);
    z-index: 10000;
}







.Mix {
    background: conic-gradient(from -45deg, var(--color-blue_dark-100-80) 110deg, var(--color-gray_medium-95-60) 90deg 180deg, var(--color-blue_medium-100-60) 180deg 270deg) 73% 55% / 150% 150% no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--color-black-10-100);
}
.MixSystem {
    background: conic-gradient(from -45deg, var(--color-purple_medium-100-40) 110deg, var(--color-blue_light-100-40) 90deg 180deg, var(--color-purple_medium-100-40) 180deg 270deg) 73% 55% / 150% 150% no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.MixGray {
    background: conic-gradient(from -45deg, var(--color-gray_light-100-35) 110deg, var(--color-gray_light-100-35) 90deg 180deg, var(--color-gray_light-100-35) 180deg 270deg) 73% 55% / 150% 150% no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--color-black-10-100);
}
.purple_bg {
    background-color: var(--color-purple_dark-100-100) !important;
    color: var(--color-white-100-100) !important;
}
.msdos {
    font-family: "Courier New", "Lucida Console", Monaco, monospace !important;
}


/*version oscura*/
/*.Mix{
    background: conic-gradient(from -45deg, #e6eaf7 110deg, #3669b9f2 90deg 180deg, #a9a9a9 180deg 270deg) 73% 55% / 150% 150% no-repeat; version oscura
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}*/
/*version oscura*/


.green {
    color: var(--color-green_dark-100-80) !important;
}






.modalAlt {
    display: none;
    position: fixed; /* Ocupa la pantalla completa */
    top: 0;
    left: 0;
    width: 100%; /* 100% del ancho */
    height: 100%; /* 100% de la altura */
    background-color: var(--color-black-50-100); /* Fondo negro con 50% de transparencia */
    z-index: 9999; /* Por encima de otros elementos */
    opacity: 0.5; /* Inicialmente invisible */
}

.win-container-alting:hover {
    box-shadow: 0 0 20px 10px var(--color-blue_medium-100-80), 0 0 40px 15px var(--color-blue_light-100-05) !important; /* Más grande y visible */
}





fieldset {
    display: flex; /* Asegura que sea un contenedor en bloque */
    flex-wrap: wrap;
    position: relative; /* Permite contener elementos posicionados */
    overflow: auto; /* Permite ajustar el contenido si se desborda */
    padding: 1rem; /* Espaciado interno para que los elementos no queden pegados al borde */
    margin: 1rem; /* Espaciado externo */
    border: 1px solid var(--color-gray_light-100-35); /* Borde estándar */
    /* width:auto; */
    width: 100%; /*lbs 12 ago 2025 dejamos en meet de 3 simon, seba luis, que el fieldset debe tener un padre con flex. para que el fieldset se ajuste al 100% de height y este width por ende no auto.*/

    /*max-width: max-content;*/
    gap: 5px;
    border-radius: 4px; /* Bordes redondeados */
    background-color: var(--color-white-100-100); /* Color de fondo opcional */
    box-shadow: 0 2px 4px var(--color-black-10-100); /* Sombra para darle un diseño moderno */
}

legend {
    background-color: var(--color-white-100-100);
    border-radius: 4px;
    padding-left: 6px;
    padding-right: 6px;
    /* color: mediumblue; */
    border: 1px solid var(--color-gray_light-100-35);
    font-weight: bold;
    font-size: 0.75rem;
}

/*    fieldset div {
        
        margin: 0.5rem 0;
    }*/

textarea::placeholder, input::placeholder {
    color: var(--color-blue_medium-60-90);
    font-style: italic;
    font-size: 0.70rem;
    letter-spacing: 0.5px;
    opacity: 0.85;
    transition: all 0.3s ease;
    font-weight: 100;
}
textarea:focus::placeholder, input:focus::placeholder {
    color: var(--color-blue_medium-100-40);
    opacity: 0.6;
}





/*contenido al 100% de ancho y alto y centrado tanto vetical como horizontal*/
/*DIV CENTRO HORIZONTAL Y CEBNTRO VETICAL*/
.div0 {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    opacity: 0;
    transform: scale(0.9);
    animation: AppearDivX_fadeInAnimation 0.3s ease-out forwards;

}

.div1 {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    opacity: 0;
    transform: scale(0.9);
    animation: AppearDivX_fadeInAnimation 0.3s ease-out forwards;
    
}


/*contenido al 100% de ancho y alto y centrado al horizontal y en el top del vertical*/
.div2 {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    justify-content: center;
    box-sizing: border-box;
    opacity: 0;
    transform: scale(0.9);
    animation: AppearDivX_fadeInAnimation 0.3s ease-out forwards;
}
.div22 {
    display: flex;
    flex-direction: column;
    /* flex-direction: row;
    align-content: flex-start; */
    width: 100%;
    height: 100%;
    /* flex-wrap: wrap;
    justify-content: center; */
    box-sizing: border-box;
    opacity: 0;
    transform: scale(0.9);
    animation: AppearDivX_fadeInAnimation 0.2s ease-out forwards;
}


.div3 {
    width: 100%;
    height:100%;
    opacity: 0;
    transform: scale(0.9);
    animation: AppearDivX_fadeInAnimation 0.3s ease-out forwards;
    padding: 10px;
}

.div4 {
    width: 100%;
    height:100%;    
    overflow:auto;    
    transform: scale(0.9);
    animation: AppearDivX_fadeInAnimation 0.3s ease-out forwards;
}

.div44 {
    width: 100%;
    height:100%;    
    display: flex;
    flex-wrap: wrap;
    transform: scale(0.9);
    animation: AppearDivX_fadeInAnimation 0.3s ease-out forwards;
    align-items: flex-start;
}

.div44-in {
    display: flex; /* Asegura que sea un contenedor en bloque */
    flex-wrap: wrap;
    position: relative; /* Permite contener elementos posicionados */
    overflow: auto; /* Permite ajustar el contenido si se desborda */
    padding: 1rem; /* Espaciado interno para que los elementos no queden pegados al borde */
    width: inherit;
    
    gap: 5px;
}




.log-detail{
    white-space:pre-wrap;
    font-size:8pt;
}

@keyframes AppearDivX_fadeInAnimation {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}












/* checks */
.atmosphere-container {
    width: 100%;
}

.atmosphere-checkbox-container {
    padding: 0px 0px 5px 0px;
}

.atmosphere-checkbox {
    cursor: pointer;
}

.atmosphere-label {
    cursor: pointer;
}

input[type="checkbox"] {
    cursor: pointer;
}


@keyframes subtleBorderAnimation {
    0% {
        border-color: var(--color-blue_medium-30-90); /* Transparente */
        clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%);
    }

    25% {
        border-color: var(--color-blue_medium-30-90); /* Azul transparente */
        clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    }

    50% {
        border-color: var(--color-blue_medium-40-90); /* Azul más visible */
        clip-path: polygon(0 100%, 100% 100%, 100% 0, 100% 0);
    }

    75% {
        border-color: var(--color-blue_medium-30-90); /* Mantener intensidad */
        clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
    }

    100% {
        border-color: var(--color-blue_medium-30-90); /* Final estable */
        clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
    }
}



/* backgrounds*/
.bg-default {
    background-image: url('../img/bg1.jpg') !important;
}

.bg-wallpaper1 {
    background-image: url('../img/bg2.jpg') !important;
}

.bg-wallpaper2 {
    background-image: url('../img/bg3.jpg') !important;
}






hr {
    width: 100%;
    border: none;
    height: 1px;
    background: linear-gradient(to right, var(--color-blue_medium-100-75), var(--color-blue_medium-30-90), var(--color-blue_medium-100-90));
    margin: 12px 0;
    box-shadow: 0px 1px 3px var(--color-black-100-100);
    border-radius: 2px;
}



.boom-effect {
    animation: boomAnimation 0.5s ease forwards;
}

@keyframes boomAnimation {
    0% {
        border: 2px solid var(--color-black-10-100);
        box-shadow: 0 0 0 0 var(--color-black-10-100);
    }

    50% {
        border: 2px solid var(--color-green_medium-100-75);
        box-shadow: 0 0 10px 5px var(--color-green_medium-50-75);
    }

    100% {
        border: 2px solid var(--color-green_medium-100-75);
        box-shadow: 0 0 0 0 var(--color-black-10-100);
    }
}


.trans {
    background: none !important;
    background-color: var(--color-black-10-100) !important;
}

/*SVC: 18-08-2025; comienzan estilos del spinner ====*/
.container-spinner {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white-80-100);
    backdrop-filter: blur(1px);
    pointer-events: auto;
    z-index: 2147483646;
}

.spinner-inner {
    display: grid;
    gap: .75rem;
    justify-items: center;
    text-align: center;
    padding: 1rem;
}

.spinner-icon {
    font-size: 22px;
}

.spinner-msg {
    font: 500 14px/1.2 system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    color: var(--color-gray_dark-100-95);
}

/*SGS: 13-10-2025; cambios en el color de selección de texto para varios navegadores */

/* Navegadores modernos (Chrome, Edge, Safari, Opera, Android WebView) */
::selection {
    background: var(--color-black-100-100);
    color: var(--color-white-100-100); /* texto blanco sobre el fondo oscuro */
}

/* Firefox (usa su propio pseudo-elemento) */
::-moz-selection {
    background: var(--color-black-100-100);
    color: var(--color-white-100-100);
}

/* Safari iOS (para compatibilidad adicional con WebKit móvil) */
::-webkit-selection {
    background: var(--color-black-100-100);
    color: var(--color-white-100-100);
}
/*SVC: 18-08-2025; fin ===*/






/* LBS 04/10/2025 PARA EFECTO INPUT V4 *******************************************************************/

/* Respeta accesibilidad: sin animaciones si el usuario lo pide */
/* Respeta accesibilidad */
@media (prefers-reduced-motion: reduce) {
  .fx-pulse, .fx-glow, .fx-bounce { animation: none !important; }
}

/* 1) Pulse de fondo */
@keyframes fxPulseBg {
  0%   { background-color: rgba(150, 202, 255, 0.9); }
  100% { background-color: transparent; }
}
.fx-pulse {
  animation: fxPulseBg 600ms ease-out;
}

/* 2) Glow del borde (ring) */
@keyframes fxGlow {
  /* Anillo visible que desaparece */
  0%   { box-shadow: 0 0 0 4px rgba(97,164,230,0.6); }
  100% { box-shadow: 0 0 0 0  rgba(97,164,230,0.0); }
}
.fx-glow {
  /* Opcional: si usas tu propio anillo, evita el default */
  outline: none;
  /* Si quieres mantener un borde base: */
  /* border: 1px solid #9ec8f1; */

  /* Hace visible el ring alrededor del input */
  animation: fxGlow 800ms ease-out;
}

/* 3) Micro-bounce (scale) */
@keyframes fxBounce {
  0%   { transform: scale(1.00); }
  30%  { transform: scale(1.13); }
  100% { transform: scale(1.00); }
}
.fx-bounce {
  display: inline-block;     /* asegura que transform aplique bien */
  transform-origin: center;
  will-change: transform;
  animation: fxBounce 250ms ease-out;
}

/* Estilos recomendados para inputs si quieres control total del look */
input.fx {
  /* En iOS/Safari a veces ayuda para que respeten el estilo */
  -webkit-appearance: none;
  appearance: none;

  background-clip: padding-box; /* para que el bg no “sangre” a borde */
  display: inline-block;        /* refuerza transform */
  border-radius: 8px;
  padding: 8px 10px;
}

/*  ************************************************************ LBS 04/10/2025 PARA EFECTO INPUT V4