body {
  background: #0a0a0f;
  font-family: 'Roboto', sans-serif !important;
  margin: 0;
  padding: 0;
}

/* //////////////////////////////// Alertas Mensajes ////////////////////////// */
.BtnAlertas {
    padding: 8px 12px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, #9333ea, #3b82f6);
    transition: 0.3s;
    color: white;
    cursor: pointer;
    font-size: 16px;
    flex: 1;
    margin: 0 5px;
    font-weight: bold;
}

.BtnAlertas:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.ModalAlertConfir {
    display: flex;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

.modal-content-Confir {
    background-color: rgba(15,10,35,0.95);
    padding: 20px;
    max-width: 300px;
    width: 90%;
    text-align: center;
    color: white;
    border-radius: 20px;
    border: 1px solid rgba(130, 90, 255, 0.4);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.7);
}

.modal-icon {
    display: block;
    margin: 0 auto 20px;
    max-width: 80px;
}

.button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.MesajeDesc {
    color: white;
}


.button-container1 {
    justify-content: space-between;
    margin-top: 40px;
}

/* //////////////////////////////// Spinner Load ////////////////////////// */

.modalSpinner {
    font-family: 'Roboto', sans-serif;
    display: none;
    position: fixed;
    z-index: 200000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content-Spinner {
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    width: 90%;
    max-width: 400px;
    color: white;
}

.loaderImage {
    width: 50px;
    height: auto;
    margin-bottom: 15px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.loading-text {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 900;
    color: white;
    letter-spacing: 1px;
    animation: pulse 1.5s infinite;
    text-align: center;
    margin-top: 20px;
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}