﻿body {


}

.centrar {
    position: absolute;
    /*nos posicionamos en el centro del navegador*/
    top: 25%;
    left: 50%;
    /*determinamos una anchura*/
    width: 700px;
    /*indicamos que el margen izquierdo, es la mitad de la anchura*/
    margin-left: -40%;
    /*determinamos una altura*/
    height: 200px;
    /*indicamos que el margen superior, es la mitad de la altura*/
   /* margin-top: 10px;*/
}

/*CENTRALIZAR GRIDVIEW*/
.CentralCabeza {
    text-align: center;
}

.IzquierdaCabeza {
    margin-left:20%
}

.dropdown-menu {
    text-align: left !important;
}



.separar3 {
    box-shadow: 14px 14px 20px 0 rgba(20, 20, 20, 0.3);
   
}

#FijarAbajo {
    bottom: 0;
    height: 180px;
    padding: 13px 0 4px;
    position: fixed;
    width: 100%;
    z-index: 5000;
    background-color: white
}


/*.FixedHeader {
    position:relative;
    font-weight: bold;
}*/


/*#panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color:#254b6d;
    display: flex;
    align-items: center;
    justify-content: center;
}

#login-form {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}*/

.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .loading-spinner img {
        width: 50px;
        height: 50px;
    }

 

/*DISEÑO DE PANEL PARA TEXTO*/

.message-container {
    text-align: center;
    margin-top: 50px;
}

.animated-label {
    font-family: Arial, sans-serif;
    font-size: 35px;
    color: #333;
    position: relative;
    cursor: pointer;
    user-select: none;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    background-image: linear-gradient(135deg, #254b6d, #001829); /* Nuevo gradiente de colores */
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: glowText 2s infinite;
    font: bold;
}

.smaller-text {
    font-size: 20px;
    display: block;
    color: #333;
}

@keyframes glowText {
    0% {
        box-shadow: 0 0 5px rgba(37, 75, 109, 0.5); /* Sombra inicial */
    }

    50% {
        box-shadow: 0 0 20px rgba(37, 75, 109, 0.8); /* Sombra intermedia */
    }

    100% {
        box-shadow: 0 0 5px rgba(37, 75, 109, 0.5); /* Sombra final */
    }
}


/* EL BOTON DE LA PANTA DERECHA INFERIOR*/

body {
    position: relative;
    margin: 0;
    padding-bottom: 50px; /* Asegura que haya suficiente espacio en la parte inferior para que el botón no bloquee contenido */
}

.boton-fijo {
    position: fixed;
    bottom: 10px;
    right: 10px;
    padding: 10px 20px;
    /* background-color: #007bff; Cambia esto al color que desees */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  
}