@font-face {
    font-family: 'Futura-PT-Light';
    src: url('../../static/fonts/futura-pt-light.otf') format('truetype');
}

@font-face {
    font-family: 'Belagia-Demo';
    src: url('../../static/fonts/Belagia-Demo.ttf') format('truetype');
}

.BtnAlertas {
    padding: 8px 12px; /* Ajustar tamaño del botón (más pequeño) */
    border: none;
    border-radius: 10px; /* Menos redondeado */
    background-color: #ff7bac; /* Fondo blanco para los botones */
    color: #f2f5fa; /* Texto en color del fondo del modal */
    cursor: pointer;
    font-size: 16px;
    flex: 1; /* Hacer que ambos botones ocupen el mismo espacio */
    margin: 0 5px; /* Margen entre botones */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Sombra suave */
    font-weight: bold; /* Negrita para el texto del botón */
}

.BtnAlertas:hover {
    background-color: #ff7bac; /* Color de fondo más claro al pasar el mouse */
    color: #f2f5fa; /* Texto en color del fondo del modal al pasar el mouse */
}

.ModalAlertConfir {
    display: flex; /* Usar flexbox */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center; /* Centrar horizontalmente */
    align-items: center; /* Centrar verticalmente */
    font-family: 'Futura-PT-Light', sans-serif;
    margin: 0;
}

.modal-content-Confir {
    background-color: #f2f5fa; /* Color de fondo del modal */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    width: 90%; /* Adaptativo */
    text-align: center; /* Centrar texto */
    color:white;
}

.modal-icon {
    display: block; 
    margin: 0 auto 20px; 
    max-width: 80px; 
}

.button-container {
    display: flex; /* Usar flexbox para alinear botones */
    justify-content: space-between; /* Espacio entre botones */
    margin-top: 40px; /* Margen superior para separar de la parte superior */
}

.MesajeDesc {
    color: #7A7A7A; /* Texto en blanco para el párrafo */
}


.button-container1 {
    justify-content: space-between; /* Espacio entre botones */
    margin-top: 40px; /* Margen superior para separar de la parte superior */
}

/* Estilos para el modal */
.modalSpinner {
    font-family: 'Futura-PT-Light', sans-serif;
    display: none; /* Oculto por defecto */
    position: fixed; /* Fijo al viewport */
    z-index: 1000; /* Por encima de otros elementos */
    left: 0;
    top: 0;
    width: 100%; /* Ancho completo */
    height: 100%; /* Alto completo */
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
    display: flex; /* Para centrar el contenido */
    justify-content: center; /* Centrar contenido horizontalmente */
    align-items: center; /* Centrar contenido verticalmente */
}

/* Contenido del modal */
.modal-content-Spinner {
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    width: 90%; /* Ancho responsive */
    max-width: 400px; /* Máximo ancho */
    color: white;
}

/* Estilos para la imagen del loader */
.loaderImage {
    width: 80px; /* Ajusta según tus necesidades */
    height: auto; /* Mantiene la proporción */
    margin-bottom: 15px; /* Espacio entre la imagen y el texto */
    animation: spin 1s linear infinite; /* Aplicar animación de rotación */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.obligatorio {
    border: 1px solid rgba(255, 0, 0, 0.5) !important;  /* Borde rojo */
    animation: shake 0.3s ease-in-out; /* Animación de sacudida */
}