#canvasOutput {
    border: 1px solid black;
}
canvas{
    display: none;
}
#btnImage{
    display: none;
}
.pointerCursor{
    cursor: pointer;
}

/* Estilos para a tela de splash */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #007bff;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Estilo do quadrado central */
.splash-content {
    background-color: #fff;
    color: #000;
    width: 300px;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Barra de progresso personalizada */
.progress {
    height: 10px;
    border-radius: 5px;
}

.progress-bar {
    width: 0;
    transition: width 1s ease;
}

/* Texto de log do carregamento */
.loading-log {
    margin-top: 10px;
    font-size: 0.9em;
    color: #555;
}

/* Nome do software */
.software-name {
    margin-top: 20px;
    font-weight: bold;
    font-size: 1.2em;
}