/* styles.css */
.center-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

#logo {
    margin-bottom: 20px;
}

#progressBar {
    width: 80%;
    background-color: #f3f3f3;
    border: 1px solid #ccc;
    height: 30px;
    margin-top: 20px;
    position: relative;
}

#progress {
    width: 0%;
    height: 100%;
    background-color: #4caf50;
    text-align: center;
    line-height: 30px;
    color: white;
}

#message {
    font-size: 18px;
    font-family: Arial, sans-serif;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}
