html, body {
    height: 100%;
}

#divContent {
    height: calc(100% - 175px);
    overflow: hidden;
    position: relative;
}

#ConsultasContent {
    height: calc(100% - 175px);
    overflow: hidden;
    display: none;
}

.logoGestorGif {
    margin: auto;
    width: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 10%;
}

.logoGestor{
    margin: auto;
    width: 50%;
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    img

{
    width: 100%;
}

}

.loading-container {
    position: absolute;
    z-index: 100000;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    display: flex;
    justify-content: space-evenly;
    img
    {
      width: 10%;
    }
}
}

/* Estilo para el overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semi-transparente */
    z-index: 9999; /* Z-index alto para estar encima de todo */
    display: none; /* Oculto por defecto */
}

/* Estilo para el mensaje de carga */
.loading-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 20px;
}

/* Estilo general del modal */
.modal {
    display: none; /* Oculto por defecto */
    position: fixed;
    z-index: 30100 !important; /* Asegúrate de que esté encima de otros elementos, incluyendo DevExpress modals */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semi-transparente */
}

/* Estilo del contenido del modal */
.modal-content {
    background-color: #fefefe;
    margin: 10% auto; /* Centra verticalmente en la pantalla */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Ancho del modal */
    max-width: 500px; /* Ancho máximo */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    text-align: center; /* Centra el texto */
}

/* Estilo de los botones del modal */
.modal-buttons {
    display: flex;
    justify-content: center; /* Centra los botones horizontalmente */
    gap: 10px; /* Espacio entre los botones */
    margin-top: 20px; /* Espacio superior */
}

.modal-buttons .btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    color: #fff;
    background-color: #007bff; /* Color de fondo */
    cursor: pointer;
    flex: 1; /* Hace que todos los botones tengan el mismo tamaño */
    text-align: center; /* Centra el texto dentro del botón */
}

.modal-buttons .btn:hover {
    background-color: #0056b3; /* Color de fondo en hover */
    color: white;
}


