﻿/*GLOBALES*/
#chartdiv {
    width: 100%;
    height: 330px;
}

#chartdiv2 {
    width: 100%;
    height: 350px;
}

#chartdiv3 {
    width: 100%;
    height: 330px;
}

#chartdiv4 {
    width: 100%;
    height: 330px;
}

label {
    font-family: Calibri;
}



/* Contenedor principal de la tabla */
.mud-table-container {
    border-radius: 15px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.mud-toolbar.mud-toolbar-gutters.mud-table-toolbar {
    border-radius: 15px !important;
    border-top-left-radius: 15px !important;
    border-top-right-radius: 15px !important;
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

    /* Opcional: Si quieres bordes redondeados completos */
    .mud-toolbar.mud-toolbar-gutters.mud-table-toolbar.rounded-full {
        border-radius: 15px !important;
    }


/* Bordes redondeados para el contenedor completo de paginación */
.d-flex.flex-row[style*="background-color: rgb(43, 43, 52)"] {
    border-radius: 0 0 15px 15px !important;
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
    border-bottom-left-radius: 15px !important;
    border-bottom-right-radius: 15px !important;
}

/* Alternativa más específica para el div padre del toolbar de paginación */
div.d-flex.flex-row[style*="border-top:1px solid white"][style*="background-color: rgb(43, 43, 52)"] {
    border-radius: 0 0 15px 15px !important;
}

/* Otra alternativa dirigida al toolbar interno */
.mud-toolbar.mud-toolbar-gutters.mud-table-pagination-toolbar.mud-tablepager-left {
    border-radius: 0 0 15px 15px !important;
}

/* Si necesitas aplicarlo a todo el contenedor de paginación */
.mud-table-pagination .d-flex.flex-row {
    border-radius: 0 0 15px 15px !important;
}



/*Destaca las filas seleccionadas en las tablas*/

.selected {
    background-color: rgb(0, 220, 220) !important; /* Color calipso un poco más claro */
    color: black !important; /* Letras negras */
    box-shadow: 0 0 6px rgba(255, 0, 255, 0.55), 0 0 12px rgba(255, 0, 255, 0.35), 0 0 18px rgba(255, 0, 255, 0.25); /* Efecto neón fucsia ligeramente aumentado */
    transition: box-shadow 0.3s ease-in-out;
}

    .selected > td {
        color: black !important; /* Letras negras */
        background-color: rgb(0, 220, 220) !important; /* Color calipso un poco más claro */
        box-shadow: 0 0 6px rgba(255, 0, 255, 0.55), 0 0 12px rgba(255, 0, 255, 0.35), 0 0 18px rgba(255, 0, 255, 0.25); /* Efecto neón fucsia ligeramente aumentado */
        transition: box-shadow 0.3s ease-in-out;
    }




.disabled-pointer {
    pointer-events: none;
}

.mud-appbar .mud-toolbar-appbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.selected > td .mud-input {
    color: white !important;
    background-color: #00E4F2 !important;
}

.div-botones-dialogo {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin-top: 15px;
    margin-bottom: 5px;
    border-top: 2px solid white;
    background-color: rgba(39, 39, 47, 0.3);
    padding: 8px !important;
    margin: 0px !important;
    border-radius: 0px 0px 7px 7px;
}



.boton-dialogo-estandar {
    width: 140px;
    height: 40px;
    transform: scale(1);
    transition: transform .1s linear;
}

    .boton-dialogo-estandar:hover {
        transform: scale(1.05);
        cursor: pointer;
        transition: transform .1s linear;
    }



.titulo-estandar {
    font-weight: 400;
    font-size: 25px;
    color: white;
    text-align: center; /* Cambia a 'left' para alinear a la izquierda o 'right' para alinear a la derecha */
}

.section-titulo-estandar {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin: 0px;
    padding: 0px;
    padding-block: 8px;
    border-radius: 15px;
}

.scale-punto-cerocinco {
    transform: scale(1);
    transition: transform .1s linear;
}

    .scale-punto-cerocinco:hover {
        transform: scale(1.05);
        transition: transform .1s linear;
        cursor: pointer;
    }

.scale-punto-uno {
    transform: scale(1);
    transition: transform .1s linear;
}

    .scale-punto-uno:hover {
        transform: scale(1.1);
        transition: transform .1s linear;
        cursor: pointer;
    }

.scale-punto-dos {
    transform: scale(1);
    transition: transform .1s linear;
}

    .scale-punto-dos:hover {
        transform: scale(1.5);
        transition: transform .1s linear;
        cursor: pointer;
    }

.scale-mudfab {
    transform: scale(1);
    transition: transform .1s linear;
}

    .scale-mudfab:hover {
        transform: scale(1.15);
        transition: transform .1s linear;
        cursor: pointer;
    }
/*-----------------*/

/*XTABLEROCLIENTEVIEW*/
#botonborrar:hover {
    color: #EB0779;
}

#botoneditar:hover {
    color: #00E4F2;
}

.contenedor-datos-cliente-sin-app {
    height: 558px;
    border-radius: 5px;
}

.contenedor-datos-cliente-con-app {
    height: 600px;
    border-radius: 5px;
}

.mudpaper-datos-cliente-sin-app {
    height: 480px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-left: 12px
}

.fila-color-rojo-xtablero {
    background-color: rgba(223, 0, 12,.4);
    color: rgb(249, 226, 0) !important;
}

.fila-color-amarillo-xtablero {
    background-color: rgba(213, 181, 0,0.9);
    color: rgb(7, 69, 76) !important;
}

.fila-color-azul-xtablero {
    background-color: rgba(0, 32, 128,.4);
    color: rgb(249, 193, 0) !important;
}

.fila-color-verde-xtablero {
    background-color: rgba(0, 117, 0,.1);
    color: rgb(249, 193, 0) !important;
}

.fila-color-blanco-xtablero {
    background-color: rgba(255, 255, 255,.8);
    color: black !important;
}

.fila-color-plomo-xtablero {
    background-color: rgba(104, 118, 138, .8);
    color: rgb(249, 193, 0) !important; /* Color amarillo específico */
}

.mudpaper-datos-cliente-con-app {
    height: 520px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-left: 12px;
}

.mudpaper-plan-sin-app {
    height: 250px;
    border-radius: 5px;
}

.mudpaper-plan-con-app {
    height: 230px;
    border-radius: 5px;
}

.tabla-planes-con-app {
    width: 98%;
    overflow-y: scroll;
    overflow-x: hidden;
    border-block: solid;
    border: 1px solid white;
    margin: 0px;
    padding: 0px;
    margin-inline: auto;
}

.tabla-planes-sin-app {
    width: 98%;
    overflow-y: scroll;
    overflow-x: hidden;
    border-block: solid;
    border: 1px solid white;
    margin: 0px;
    padding: 0px;
    margin-inline: auto;
}

.mudpaper-billetera-sin-app {
    display: flex;
    align-items: center;
    height: 130px;
    border-radius: 5px;
}

.mudpaper-billetera-con-app {
    display: flex;
    align-items: center;
    height: 100px;
    border-radius: 5px;
}

.mudpaper-matricula-sin-app {
    display: flex;
    align-items: center;
    height: 130px;
    border-radius: 5px;
}

.mudpaper-matricula-con-app {
    display: flex;
    align-items: center;
    height: 100px;
    border-radius: 5px;
}
/*--------------------*/


/*-------SEMAFOROVIEW---------*/
.todas-las-filas {
    text-align: center !important;
    width: 100% !important;
}

.fila-color-rojo {
    background-color: rgb(223, 0, 12);
    color: rgb(249, 226, 0) !important;
}

.fila-color-amarillo {
    background-color: rgb(213, 181, 0);
    color: rgb(7, 69, 76) !important;
}

.fila-color-azul {
    background-color: rgb(0, 32, 128);
    color: rgb(249, 193, 0) !important;
}

.fila-color-verde {
    background-color: rgb(0, 117, 0);
    color: rgb(249, 193, 0) !important;
}

.fila-color-plomo {
    background-color: rgba(104, 118, 138);
    color: rgb(249, 193, 0) !important;
}

.fila-seleccionada {
    background-color: rgb(0, 255, 255); /* Color cyan */
    color: black !important; /* Letras negras */
    box-shadow: 0 -5px 10px rgba(0, 255, 255, 0.5), 0 5px 10px rgba(0, 255, 255, 0.5), 0 -10px 20px rgba(0, 255, 255, 0.3), 0 10px 20px rgba(0, 255, 255, 0.3), 0 -15px 30px rgba(0, 255, 255, 0.2), 0 15px 30px rgba(0, 255, 255, 0.2); /* Efecto neón cyan más sutil */
    transition: box-shadow 0.3s ease-in-out;
}




/*------------------*/
#datepicker {
    z-index: 10;
}

#imagenBlanco {
    position: absolute;
}

#divLogin {
    position: absolute;
    visibility: hidden;
}

#MenuCerrarSesion {
    animation: Girar linear infinite 5s;
    -webkit-animation: Girar linear infinite 5s;
}

/*Bordes de los Mud container*/
.shadow {
    -webkit-box-shadow: -2px 2px 5px 2px #1E1E24;
    box-shadow: -2px 2px 5px 2px #1E1E24;
}

.IconoConfiguracion {
    animation: Girar linear infinite 5s;
}


/*----------------TABLAS-----------------*/
.headers {
    background-color: #373740 !important;
    white-space: nowrap;
    text-align: center;
    color: white !important;
    height: 40px;
    padding: 0px;
}

    .headers:hover {
        transform: scale(1.06);
    }

.iconos-tablas {
    height: 35px !important;
    width: 35px !important;
}

.iconos-accion {
    width: 40px;
    height: 40px;
    max-width: 40px;
    max-height: 40px;
    min-height: 40px;
    min-width: 40px;
}

.mudtd {
    text-align: center;
    text-transform: uppercase;
}

.div-accion {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
}

.texto-monto {
    font-family: Calibri;
    border: 1px solid rgba(65, 147, 169);
    background-color: rgba(65, 147, 169,.4);
    border-radius: 5px;
    padding: 2px 10px;
    color: white;
    white-space: nowrap;
    font-size: 22px;
    font-weight: 500;
}

.mud-table-page-number-information {
    font-family: Calibri;
    border: 1px solid rgba(65, 147, 169);
    background-color: rgba(65, 147, 169,.4);
    border-radius: 5px;
    padding: 2px 4px;
    color: white;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 500;
    margin-right: auto;
}


/*FONDO DE LAS LABEL DE LOS TEXTFIELD*/
.mud-input-label {
    background-color: #1E1E24;
}

.mud-table-pagination-information {
    font-family: Calibri;
    border: 1px solid rgb(140, 3, 69);
    background-color: rgba(153, 31, 90,.5);
    border-radius: 5px;
    padding: 2px 4px;
    color: white;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 500;
    margin-right: auto;
}


/*ES EL MARGIN QUE TIENE EN EL FILTRAR DE LAS TABLAS CUANDO ESTAN EN XS*/
.mud-input-control > .mud-input-control-input-container > div.mud-input.mud-input-text {
    margin-top: 0;
}

@media(max-width:500px) {
    .texto-monto {
        font-size: 14px;
        padding: 8px 3px;
        min-width: min-content;
    }

    .mud-table-pagination-information {
        display: none;
    }
}

@media (max-width:600px) {
    .soloCelu {
        width: 100%;
        font-size: 0.75rem;
        color: white;
        white-space: normal !important;
        padding: 4px 12px !important;
    }

    .mudtd {
        color: white !important;
    }

    .div-accion {
        justify-content: end;
    }

    .mud-table-toolbar {
        background-color: rgb(43,43,52) !important;
        border-bottom: 1px solid white;
    }

    .mud-xs-table .mud-table-smalldevices-sortselect {
        padding: 0px 8px;
    }

    .mud-table .mud-table-pagination .mud-table-pagination-toolbar {
        min-height: auto;
        height: auto !important;
        padding: 0px
    }

    .iconos-tablas {
        width: 26px !important;
        height: 26px !important;
        min-width: 26px;
        min-height: 26px;
        max-height: 26px;
        max-width: 26px;
    }

    .iconos-accion {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        max-height: 32px;
        max-width: 32px;
    }

    .correo {
        word-break: break-word;
    }
}
/*----------------------------------*/

@media (min-width:800px) {

    .neon-borderLogin {
        border: 3px solid #ffffff;
        box-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 30px #ffffff, 0 0 40px #ff00de;
    }

    #divLogin {
        position: absolute;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        visibility: visible;
    }

    .iconsLogin {
        position: absolute;
        border: 0px solid #ffffff;
        box-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 30px #ffffff, 0 0 40px #ff00de;
        border-radius: 20%; /* Esto redondeará los bordes de los iconos */
    }

        .iconsLogin:nth-child(1) {
            width: 105px;
            height: 105px;
            top: 110vh;
            right: 90vw;
            -webkit-animation: Matias linear 22s infinite 1.5s;
            animation: Matias linear 22s infinite 1.5s;
        }

        .iconsLogin:nth-child(2) {
            width: 95px;
            height: 95px;
            top: 110vh;
            right: 72vw;
            -webkit-animation: Matias1 linear 24s infinite 3s;
            animation: Matias1 linear 24s infinite 3s;
        }

        .iconsLogin:nth-child(3) {
            width: 100px;
            height: 100px;
            top: 110vh;
            right: 54vw;
            -webkit-animation: Matias linear 26s infinite 2.5s;
            animation: Matias linear 26s infinite 2.5s;
        }

        .iconsLogin:nth-child(4) {
            width: 105px;
            height: 105px;
            top: 110vh;
            left: 54vw;
            -webkit-animation: Matias1 linear 25s infinite;
            animation: Matias1 linear 25s infinite;
        }

        .iconsLogin:nth-child(5) {
            width: 90px;
            height: 90px;
            top: 110vh;
            left: 72vw;
            -webkit-animation: Matias linear 20s infinite 3s;
            animation: Matias linear 20s infinite 3s;
        }

        .iconsLogin:nth-child(6) {
            width: 100px;
            height: 100px;
            top: 110vh;
            left: 90vw;
            -webkit-animation: Matias1 linear 24s infinite 1s;
            animation: Matias1 linear 24s infinite 1s;
        }

        .iconsLogin:nth-child(7) {
            width: 95px;
            height: 95px;
            top: 110vh;
            right: 90vw;
            -webkit-animation: Inverso linear 22s infinite 1.5s;
            animation: Inverso linear 22s infinite 1.5s;
        }

        .iconsLogin:nth-child(8) {
            width: 95px;
            height: 95px;
            top: 110vh;
            right: 72vw;
            -webkit-animation: Inverso1 linear 24s infinite 3s;
            animation: Inverso1 linear 24s infinite 3s;
        }

        .iconsLogin:nth-child(9) {
            width: 100px;
            height: 100px;
            top: 110vh;
            right: 54vw;
            -webkit-animation: Inverso linear 26s infinite 2.5s;
            animation: Inverso linear 26s infinite 2.5s;
        }

        .iconsLogin:nth-child(10) {
            width: 105px;
            height: 105px;
            top: 110vh;
            left: 54vw;
            -webkit-animation: Inverso1 linear 25s infinite;
            animation: Inverso1 linear 25s infinite;
        }

        .iconsLogin:nth-child(11) {
            width: 90px;
            height: 90px;
            top: 110vh;
            left: 72vw;
            -webkit-animation: Inverso linear 20s infinite 3s;
            animation: Inverso linear 20s infinite 3s;
        }

        .iconsLogin:nth-child(12) {
            width: 100px;
            height: 100px;
            top: 110vh;
            left: 90vw;
            -webkit-animation: Inverso1 linear 24s infinite 1s;
            animation: dd linear 24s infinite 1s;
        }

    .IconoSincronizar {
        -webkit-animation: Girar linear 3s infinite 0s;
        animation: Girar linear 3s infinite 0s;
    }
}

@-webkit-keyframes Girar {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes Girar {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes Inverso {
    0% {
        opacity: 0;
    }

    50% {
        -webkit-transform: translateY(0) rotate(0);
        opacity: 0.7;
        color: #0BC0D1;
    }

    82% {
        -webkit-transform: translateY(-60vh) rotate(80deg);
        color: #0BC0D1;
        opacity: 0.5;
    }

    95% {
        -webkit-transform: translateY(-77vh) rotate(107deg);
        color: #0BC0D1;
        opacity: 0.2;
    }

    100% {
        -webkit-transform: translateY(-85vh) rotate(120deg);
        color: #0BC0D1;
        opacity: 0;
    }
}

@keyframes Inverso {
    0% {
        opacity: 0;
    }

    50% {
        transform: translateY(0) rotate(0);
        opacity: 0.7;
        color: #0BC0D1;
    }

    82% {
        transform: translateY(-60vh) rotate(80deg);
        color: #0BC0D1;
        opacity: 0.5;
    }

    95% {
        transform: translateY(-77vh) rotate(107deg);
        color: #0BC0D1;
        opacity: 0.2;
    }

    100% {
        transform: translateY(-85vh) rotate(120deg);
        color: #0BC0D1;
        opacity: 0;
    }
}

@-webkit-keyframes Inverso1 {
    0% {
        opacity: 0;
    }

    50% {
        -webkit-transform: translateY(0) rotate(0);
        opacity: 0.7;
        color: #DC046F;
    }

    82% {
        -webkit-transform: translateY(-62vh) rotate(-117deg);
        opacity: 0.5;
        color: #DC046F;
    }

    100% {
        -webkit-transform: translateY(-95vh) rotate(-180deg);
        opacity: 0;
        color: #DC046F;
    }
}

@keyframes Inverso1 {
    0% {
        opacity: 0;
    }

    50% {
        transform: translateY(0) rotate(0);
        opacity: 0.7;
        color: #DC046F;
    }

    82% {
        transform: translateY(-62vh) rotate(-117deg);
        opacity: 0.5;
        color: #DC046F;
    }

    100% {
        transform: translateY(-95vh) rotate(-180deg);
        opacity: 0;
        color: #DC046F;
    }
}


@-webkit-keyframes Matias {
    0% {
        -webkit-transform: translateY(0) rotate(0);
        opacity: 0.7;
        color: #0BC0D1;
    }

    32% {
        -webkit-transform: translateY(-60vh) rotate(80deg);
        color: #0BC0D1;
        opacity: 0.5;
    }

    45% {
        -webkit-transform: translateY(-77vh) rotate(107deg);
        color: #0BC0D1;
        opacity: 0.2;
    }

    50% {
        -webkit-transform: translateY(-85vh) rotate(120deg);
        color: #0BC0D1;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}


@keyframes Matias {
    0% {
        transform: translateY(0) rotate(0);
        opacity: 0.7;
        color: #0BC0D1;
    }

    32% {
        transform: translateY(-60vh) rotate(80deg);
        color: #0BC0D1;
        opacity: 0.5;
    }

    45% {
        transform: translateY(-77vh) rotate(107deg);
        color: #0BC0D1;
        opacity: 0.2;
    }

    50% {
        transform: translateY(-85vh) rotate(120deg);
        color: #0BC0D1;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}


@-webkit-keyframes Matias1 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
        opacity: 0.7;
        color: #DC046F;
    }

    32% {
        -webkit-transform: translateY(-62vh) rotate(-117deg);
        opacity: 0.5;
        color: #DC046F;
    }

    50% {
        -webkit-transform: translateY(-95vh) rotate(-180deg);
        opacity: 0;
        color: #DC046F;
    }

    100% {
        opacity: 0;
    }
}

@keyframes Matias1 {
    0% {
        transform: translateY(0) rotate(0);
        opacity: 0.7;
        color: #DC046F;
    }

    32% {
        transform: translateY(-62vh) rotate(-117deg);
        opacity: 0.5;
        color: #DC046F;
    }

    50% {
        transform: translateY(-95vh) rotate(-180deg);
        opacity: 0;
        color: #DC046F;
    }

    100% {
        opacity: 0;
    }
}

@media (min-width:601px) {
    .soloCompu {
        max-width: 400px;
        white-space: nowrap;
        overflow-x: scroll;
        width: auto !important;
        -webkit-line-clamp: 2;
        -webkit-box-orient: horizontal;
        overflow:;
    }

    .barraScroll::-webkit-scrollbar {
        height: 6px;
    }

    .barraScroll::-webkit-scrollbar-track {
        border-radius: 10px;
    }

    .barraScroll::-webkit-scrollbar-track {
        border-radius: 10px;
    }

    .barraScroll::-webkit-scrollbar-thumb:hover {
        background: #00B3C7;
    }
}

.logo-light-effect {
    width: 220px;
    filter: brightness(1.5) saturate(100%) contrast(90%) !important;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.6), 0 0 30px rgba(0, 255, 255, 0.4) !important;
}

/*fondoGradiente en el fondo principal*/


/*.fondoGradiente {*/
    /* background: linear-gradient(rgba(50, 51, 61, 0.5), rgba(39, 39, 47, 0.5)), url('/Fondo2.jpg');*/
    /*background: linear-gradient(rgba(50, 51, 61, 0.5), rgba(39, 39, 47, 0.5));
    background-size: 100% 100%;
    background-position: 80% 0;*/ /* Ajusta el primer valor para mover la imagen horizontalmente */
    /*min-height: 100vh;
    position: relative;
    overflow: hidden;*/ /* Se especifica el valor 'hidden' para la propiedad overflow */
/*}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

.fondoGradiente::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 110%;
    background: linear-gradient(0deg, rgba(0, 255, 255, 0.4) -180%, rgba(50, 51, 61, 0.3) 50%, rgb(50, 51, 61) 200%);
    animation: fadeInOut 5s infinite ease-in-out;
}*/

/****************************************************************************************************************************/


.fondoGradienteAndroide {
    background: linear-gradient(rgba(50, 51, 61, 0.3), rgba(39, 39, 47, 0.3)), url('/6.jpg');
    background-size: cover;
    background-position: 59% 30%;
    min-height: 100vh;
    opacity: 0.1; /* Aumenta la visibilidad */
    animation: fadeInMove 3s ease-in-out infinite alternate, neonGlow 3s infinite alternate; /* Aumenta la frecuencia del parpadeo */
}

.fondoGradienteAndroide {
    background: linear-gradient(rgba(50, 51, 61, 0.3), rgba(39, 39, 47, 0.3)), url('/6.jpg');
    background-size: cover;
    background-position: 59% 30%;
    min-height: 100vh;
    opacity: 0.1; /* Aumenta la visibilidad */
    animation: fadeInMove 3s ease-in-out infinite alternate, neonGlow 3s infinite alternate; /* Aumenta la frecuencia del parpadeo */
}

/* Efecto de parpadeo de neón y cambio de tamaño */
@keyframes neonGlow {
    0% {
        box-shadow: 0 0 10px rgba(0, 255, 255, 0.7), 0 0 20px rgba(0, 255, 255, 0.7), 0 0 30px rgba(0, 255, 255, 0.7);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        box-shadow: 0 0 30px rgba(0, 255, 255, 1), 0 0 40px rgba(0, 255, 255, 1), 0 0 50px rgba(0, 255, 255, 1);
        transform: scale(0.95);
        opacity: 0.5;
    }
}

/* Animación de desvanecimiento y movimiento */
@keyframes fadeInMove {
    0% {
        opacity: 0.5;
        transform: translateY(0px); /* Mueve la imagen hacia abajo */
    }

    50% {
        opacity: 0.75;
        transform: translateY(0px); /* Mueve la imagen hacia arriba */
    }

    100% {
        opacity: 1;
        transform: translateY(0); /* Mueve la imagen a su posición original */
    }
}

/* Efecto de parpadeo de neón */
@keyframes neonGlow {
    0% {
        box-shadow: 0 0 10px rgba(0, 255, 255, 0.7), 0 0 20px rgba(0, 255, 255, 0.7), 0 0 30px rgba(0, 255, 255, 0.7);
    }

    100% {
        box-shadow: 0 0 30px rgba(0, 255, 255, 1), 0 0 40px rgba(0, 255, 255, 1), 0 0 50px rgba(0, 255, 255, 1);
    }
}


/* Animación de desvanecimiento y movimiento */
@keyframes fadeInMove {
    0% {
        opacity: 0.5;
        transform: translateY(0px); /* Mueve la imagen hacia abajo */
    }

    50% {
        opacity: 0.75;
        transform: translateY(0px); /* Mueve la imagen hacia arriba */
    }

    100% {
        opacity: 1;
        transform: translateY(0); /* Mueve la imagen a su posición original */
    }
}

/* Efecto de parpadeo de neón */
@keyframes neonGlow {
    0% {
        box-shadow: 0 0 5px rgba(0, 255, 255, 0.5), 0 0 10px rgba(0, 255, 255, 0.5), 0 0 20px rgba(0, 255, 255, 0.5);
    }

    100% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 1), 0 0 30px rgba(0, 255, 255, 1), 0 0 40px rgba(0, 255, 255, 1);
    }
}

@keyframes neon {
    0% {
        text-shadow: 0 0 3px #33FFFC, 0 0 5px #33FFFC, 0 0 8px #33FFFC, 0 0 10px #33FFFC;
    }

    50% {
        text-shadow: 0 0 5px #33FFFC, 0 0 10px #33FFFC, 0 0 15px #33FFFC, 0 0 20px #33FFFC;
    }

    100% {
        text-shadow: 0 0 3px #33FFFC, 0 0 5px #33FFFC, 0 0 8px #33FFFC, 0 0 10px #33FFFC;
    }
}

.neon-text {
    animation: neon 2s linear infinite;
    color: #33FFFC;
}

.mud-overlay {
    background-color: rgba(0, 0, 0, 0.2) !important;
}


/*Contorno de los componentes que se muestran en forma de dialogo.*/


.form-container {
    animation: gradient 5s ease infinite;
    background: linear-gradient(#1a1a20, #1a1a20) padding-box, linear-gradient(145deg, transparent 35%,#e81cff, #40c9ff) border-box;
    background-size: 200% 100%;
    border: 2px solid transparent;
    border-radius: 16px;
    box-sizing: border-box;
    color: white;
    display: flex;
    flex-direction: column;
    font-family: inherit;
    font-size: 14px;
    gap: 20px;
    padding: 32px 24px;
    max-height: 800px;
    max-width: 640px;
    cursor: pointer;
    transition: box-shadow 0.3s ease-in-out;
}

    .form-container:hover {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.4);
    }

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


/*FONDO DE LAS LABEL DE LOS TEXTFIELD Y DATEPICKER*/
.mud-input-label {
    background-color: rgba(30, 30, 36, 0.95) !important;
    padding: 0 4px !important;
    z-index: 1 !important;
}

/* Mejorar el fondo de los DatePicker y otros componentes de MudBlazor */
.mud-picker-inline-paper {
    background-color: rgba(30, 30, 36, 0.95) !important;
}

.mud-picker-paper {
    background-color: rgba(30, 30, 36, 0.95) !important;
}

.mud-picker-container {
    background-color: rgba(30, 30, 36, 0.95) !important;
}

.mud-picker-toolbar {
    background-color: rgba(55, 55, 64, 0.95) !important;
}

.mud-picker-calendar-header {
    background-color: rgba(55, 55, 64, 0.95) !important;
}

.mud-picker-calendar-container {
    background-color: rgba(30, 30, 36, 0.95) !important;
}

.mud-picker-year-container {
    background-color: rgba(30, 30, 36, 0.95) !important;
}

.mud-picker-month-container {
    background-color: rgba(30, 30, 36, 0.95) !important;
}



/* --- MudSelect Solo Lista Luminosa --- */

/* Dropdown del select con efectos luminosos intensos - SOLO LA LISTA */
.mud-popover .mud-list {
    background: rgba(20, 20, 30, 0.98) !important;
    border-radius: 12px !important;
    border: 2px solid rgba(0, 220, 220, 0.6) !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.8), 
                0 0 30px rgba(0, 255, 255, 0.4), 
                0 0 60px rgba(0, 255, 255, 0.2) !important;
    backdrop-filter: blur(15px) !important;
}

/* Items de la lista con efectos luminosos */
.mud-list-item {
    color: #f0f0f0 !important;
    font-size: 1rem !important;
    border-bottom: 1px solid rgba(0, 220, 220, 0.3) !important;
    transition: all 0.3s ease !important;
    background-color: transparent !important;
    padding: 14px 18px !important;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.2) !important;
}

.mud-list-item:hover {
    background: rgba(35, 35, 50, 0.9) !important;
    color: #ffffff !important;
    box-shadow: inset 0 0 20px rgba(0, 255, 255, 0.3), 
                0 0 15px rgba(0, 255, 255, 0.2) !important;
    border-left: 4px solid rgba(0, 255, 255, 0.8) !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6) !important;
    transform: translateX(2px) !important;
}

.mud-list-item.mud-selected {
    background: rgba(0, 220, 220, 0.25) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    border-left: 4px solid rgba(0, 255, 255, 1) !important;
    box-shadow: inset 0 0 25px rgba(0, 255, 255, 0.4), 
                0 0 20px rgba(0, 255, 255, 0.3) !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8) !important;
}

/* Animación para pulsación luminosa en la lista */
@keyframes listGlow {
    0% {
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.8), 
                    0 0 20px rgba(0, 255, 255, 0.2), 
                    0 0 40px rgba(0, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.8), 
                    0 0 40px rgba(0, 255, 255, 0.5), 
                    0 0 80px rgba(0, 255, 255, 0.3);
    }
    100% {
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.8), 
                    0 0 20px rgba(0, 255, 255, 0.2), 
                    0 0 40px rgba(0, 255, 255, 0.1);
    }
}

/* Aplicar animación cuando la lista está abierta */
.mud-popover.mud-popover-open .mud-list {
    animation: listGlow 3s ease-in-out infinite !important;
}

.luminosidad-borde:hover {
    border-color: rgba(0, 255, 255, 0.7) !important;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.2) !important;
    transform: translateY(-2px) !important;
}

/* --- Fin MudSelect Solo Lista Luminosa --- */

