* {
    /* border: 1px solid grey; */
}

#canvas3d {
    border: 2px solid black;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 30px;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    max-width: 900px;
}

.main-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 10px;
    margin-top: 1rem;
    padding: 0.5rem 2rem 0.5rem 2rem;
    min-height: 60vh;
}

.visualizer-form-box {
    width: 100%;
    margin-bottom: 1rem;
}

.voxel-visualizer {
    flex: 1 1 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    box-sizing: border-box;
    overflow: hidden;
}

.results-box {
    flex: 0 0 35%;
    max-width: 35%;
    box-sizing: border-box;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 30px;
}

#run-info-text {
    word-break: break-all;
}

#evaluation-text {
    word-break: break-all;
    margin-top: 1rem;
}