/* style.css */

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Adiciona a imagem de fundo */
    background-image: url('background.png');
  
    background-repeat: no-repeat;
    
    background-size: cover;
    
    background-position: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}


#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Windows XP-style window */
.loading-window {
    width: 400px;
    background-color: #ECE9D8; /* Light gray window background */
    border: 1px solid #000;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.title-bar {
    background: linear-gradient(to right, #004D99, #4B8DD6); /* Blue title bar gradient */
    color: #fff;
    padding: 3px 8px;
    font-size: 14px;
    font-weight: bold;
    border-bottom: 1px solid #003366;
}

.loading-content {
    padding: 20px;
    text-align: center;
}

.loading-content p {
    font-size: 14px;
}

/* Progress Bar */
.progress-bar-container {
    width: 90%;
    height: 18px;
    border: 1px solid #7F9DB9;
    background-color: #D3D3D3;
    margin: 20px auto 10px;
    padding: 1px;
}

#progress-bar {
background-color: #ADD8E6; 
height: 60% ;
width: 60% ; 
border-radius: 3px;
border: none; 
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); 

/*  font-size: 16p    font-weight: bold;
}
