html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
/*MENSAJE DE CARGA*/
/* Contenedor que cubre toda la pantalla */
.message-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro transparente */
    z-index: 9999;
    justify-content: center;
    align-items: center; /* Centra los elementos en el contenedor */
    display: flex;
}

/* Caja del mensaje */
.message-box {
    background-color: white;
    border-radius: 10px;
    text-align: center;
    width: 300px; /* Ancho de la caja */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3); /* Sombras */
    height:100px;
}

/* Estilo del contenido del mensaje */
.message-content {
    font-size: 15px;
    margin-bottom: 15px;
    font-weight:bold;
}

/* Estilo del botón de cerrar */
.close-message {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

    .close-message:hover {
        background-color: #0056b3;
    }

/* Estilos según el tipo de mensaje */
.loading {
    font-size: 18px;
    color: #007bff;
}

.success {
    color: green;
}

.error {
    color: red;
}

.warning {
    color: orange;
}
/***********************************/
/*ESTILO DE ANIMACION DE CARGA*/
#preloader6 {
    position: relative;
    width: 42px;
    height: 42px;
    animation: preloader_6 5s infinite linear;
}

    #preloader6 span {
        width: 20px;
        height: 20px;
        position: absolute;
        background: red;
        display: block;
        animation: preloader_6_span 1s infinite linear;
    }

        #preloader6 span:nth-child(1) {
            background: #2ecc71;
        }

        #preloader6 span:nth-child(2) {
            left: 22px;
            background: #9b59b6;
            animation-delay: .2s;
        }

        #preloader6 span:nth-child(3) {
            top: 22px;
            background: #3498db;
            animation-delay: .4s;
        }

        #preloader6 span:nth-child(4) {
            top: 22px;
            left: 22px;
            background: #f1c40f;
            animation-delay: .6s;
        }

@keyframes preloader_6_span {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.5);
    }

    100% {
        transform: scale(1);
    }
}
#messageOverlay, #messageCarga {
    display: none;
    align-content:center;
}
/* Botón de cierre en la esquina */
.close-message-btn {
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    outline: none;
    float:right;
    margin-top:-10px;

}

    /* Efecto al pasar el mouse */
    .close-message-btn:hover {
        color: #ff0000; /* Cambia de color al pasar el mouse, por ejemplo, a rojo */
    }
/********************************************************************************/
.modal {
    text-align: -webkit-center!important;
}

.etiqVerPublic {
    background-color: #b7e2f4 !important;
    align-content:center!important;
}

.btnAccion {
    padding-right: 8px;
    padding-left: 8px;
    width: 130px;
    margin-right: 8px;
}
.divContenedorBotones {
    display: flex;
    justify-content: center;
    align-items: center;
}



