body,
html {
    margin: 0;
    padding: 0;
    background-color: #00000000;
    max-height: 100vh;
    max-width: 100vw;
}

#unity-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
    margin-top: 32px;
    background-color: #00000000;
    border-radius: 10px;
    max-width: 94vw;
    max-height: 90vh;
    width: fit-content;
    height: fit-content;
}

#unity-canvas {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    max-width: 100%;
    max-height: 100%;
}

#unity-footer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 1rem;
}

#unity-mute-button,
#unity-fullscreen-button {
    width: 30px;
    height: 30px;
    margin-left: 1rem;
    position: relative;
    cursor: pointer;
    background-color: white;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#unity-loading-bar {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: #dbdbdb;
    border-radius: 10px;
}

#unity-progress-bar-empty {
    background: #9a9a9a;
    border-radius: 10px;
    overflow: hidden;
    width: 50%;
}

#unity-progress-bar-full {
    height: 25px;
    background: #242424;
    transition: width 5000ms;
}
