body {
    padding: 0;
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    background: black;
}

#unity-progress-text {
    font-size: 14px;
    font-family: Arial;
    color: #000;
    text-align: center; 
    margin-top: 10px;
    visibility: hidden;
}

#unity-container {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

#unity-canvas {
    background: url('loading-background.png') no-repeat center;
    background-size: cover;
    width: 100%;
    height: auto;
    max-width: 100vw;
    max-height: 100vh;
    aspect-ratio: 16 / 9;
    outline: none;
}

#unity-loading-bar {
    position: fixed;
    display: flex;
    justify-content: center; 
    align-items: center; 
    width: 100%;
    height: 100vh;      
    top: 0;
    left: 0;
}

#unity-loading-bar-item {
    height: 100vh;  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#dalarnia-legends-logo {
    width: 481px;
    height: 113px;
    background: url('dal-logo.png') no-repeat center;
}

#hexagon-loading-icon {
    margin-top: 20px;
    width: 114px;
    height: 114px;
    background: url('loading-hexagons.gif') no-repeat center;
    background-size: contain;
}

#unity-progress-bar-empty {
    margin-top: 10px;
    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;
}

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}
