html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden; /* Prevents unwanted scrollbars */
    background-color: #C6ECFF;
}

.webgl-container {
    position: relative;
    width: 80vw;
    height: 45vw; /* 16:9 ratio based on width (9 / 16 * 100) */
    max-height: 80vh;
    max-width: 142.22vh; /* 16:9 ratio based on height (16 / 9 * 100) */
    box-shadow: 0px 4px 20px rgba(0,0,0,0.5); /* Optional layout styling */
}

.break {
    flex-basis: 100%;
}

#unity-container {
    width: 100%;
    height: 100%;
}

#unity-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}
