﻿/* styles.css */
/*.loading-overlay-2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}*/
.loading-overlay-2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7); /* Transparencia */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10; /* debajo del menú (si este tiene más de 10) */
}

.loading-image-2 {
    width: 100px;
    height: 100px;
}
/* Estilo del spinner */
.spinner-2 {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3); /* Borde externo */
    border-top: 5px solid white; /* Borde superior que se anima */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animación del spinner */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}