@import url('https://fonts.googleapis.com/css2?family=Balsamiq+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Pixelify+Sans:wght@400..700&display=swap');

body{
    margin: 0;
    padding: 0;
    overflow: hidden;
}


header{
    position: fixed;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 50px;
    border: solid #90CF8E 4px;
    background-color: #90CF8E;
    gap: 5px;
    box-sizing: border-box;
    color: #72dc6f;
    font-size: 20px;
    font-family: "Pixelify Sans", sans-serif;
}
#fps{
    display: flex;
    background-color: #90CF8E;
    color: #DAF2D7;
    width: 100px;
    height: 100%;
    align-items: center;
    justify-content: center;
}

#step{
    display: flex;
    background-color: #90CF8E;
    color: #DAF2D7;
    width: 150px;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.subparts{
    display: flex;
    background-color: #DAF2D7;
    width: 100px;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.subparts:hover{
    background-color: #90CF8E;
    color: #DAF2D7;
    cursor: pointer;
}



#canvas{
    width: 100%;
    height: 100%;
}

#controls-panel {
    position: fixed;
    left: 0;
    top: 50px;
    width: 250px;
    height: calc(100vh - 50px);
    background-color: #DAF2D7;
    border: solid #90CF8E 4px;
    border-left: none;
    padding: 10px;
    box-sizing: border-box;
    font-family: "Balsamiq Sans", sans-serif;
    font-size: 14px;
    color: #333;
    overflow-y: auto;
    display: none;
    z-index: 10;
}

#controls-panel h3 {
    margin-top: 0;
    color: #90CF8E;
    font-size: 18px;
}

#controls-panel h4 {
    color: #72dc6f;
    font-size: 16px;
    margin-bottom: 5px;
}

#controls-panel p {
    margin-bottom: 15px;
    line-height: 1.4;
}

#models-panel {
    position: fixed;
    right: 0;
    top: 50px;
    width: 250px;
    height: calc(100vh - 50px);
    background-color: #DAF2D7;
    border: solid #90CF8E 4px;
    border-right: none;
    padding: 10px;
    box-sizing: border-box;
    font-family: "Balsamiq Sans", sans-serif;
    font-size: 14px;
    color: #333;
    overflow-y: auto;
    display: none;
    z-index: 10;
}

#models-panel h3 {
    margin-top: 0;
    color: #90CF8E;
    font-size: 18px;
}

#models-panel h4 {
    color: #DAF2D7;
    font-size: 16px;
    margin-bottom: 5px;
}

#models-panel p {
    margin-bottom: 15px;
    line-height: 1.4;
}

.model-option {
    border: 2px solid #90CF8E;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.model-option:hover {
    background-color: #E4FDE1;
}

.model-option.selected {
    background-color: #90CF8E;
    color: #DAF2D7;
}