html,
body {
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    background: #000000;
    overflow: hidden;
}

#loadingContainer {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
background: #000000;
z-index: 9999;
}

.loading-image {
    image-rendering: pixelated; 
    image-rendering: crisp-edges;
}

#unity-container {
padding: 0;
margin: 0;
position: absolute;
left: 50%;
top: 0;
height: 100%;
width: 100%;
transform: translate(-50%, 0%);
}

#unity-canvas {
position: absolute;
left: 50%;
top: 0;
padding: 0;
margin: 0;
background: #000000;
outline: 0px solid #ab5236 !important;
border-radius: 0;
transform: translate(-50%, 0%);
image-rendering: pixelated;
}

.install-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 1000;
}
#unity-loading-bar {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
display: none;
}
#unity-progress-bar-empty {
width: 141px;
height: 18px;
background: url("progress-bar-empty.png") no-repeat center;
}
#unity-progress-bar-full {
width: 0%;
height: 18px;
background: url("progress-bar-full.png") no-repeat center;
}

#installButton {
padding: 10px 20px;
background: #2196f3;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
