body {
    padding: 0;
    margin: 0;
    overflow: hidden; /* Prevent scrolling */
}

#unity-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw; /* Full viewport width */
    height: 100vh; /* Full viewport height */
}

#unity-canvas {
    width: 100%;
    height: 100%;
    background: #000000; /* Ensure a consistent background */
    position: absolute;
    top: 0;
    left: 0;
}

#unity-loading-bar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#unity-progress-bar-empty {
    width: 141px;
    height: 18px;
    background: url('progress-bar-empty-dark.png') no-repeat center;
}

#unity-progress-bar-full {
    width: 0%;
    height: 18px;
    background: url('progress-bar-full-dark.png') no-repeat center;
}

#unity-warning {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%);
    background: white;
    padding: 10px;
    display: none;
}
