﻿.preload-overlay {
    /*text-align:center!important;*/
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6); /* Fondo oscuro semitransparente */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    
}
.preload-overlay-V2 {
    position: fixed; /* o relative si es necesario */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* semitransparente */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.preload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);*/
}

.spinner-border {
    width: 3rem;
    height: 3rem;
    /*color: #007bff;*/
    color:white
}

.preload-content p {
    margin-top: 10px;
    font-size: 1.2rem;
    /*color: #333;*/
    color: white
}
