body {
    color: #444;
    font-family: sans-serif;
    margin: 0;
}
.wrap_tool {
    display: flex;
    height: 98.5vh;
}
.preview {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    overflow: scroll;
}
#code-output {
    width: 400px;
}

/******************************************
*******           ELEMENT           *******
******************************************/
#model h4 {
    padding: 14px;
    margin: 0;
    background-color: rgb(150, 222, 255);
}
#model img {
    width: 128px;
    height: 128px;
    float: left;
}


/******************************************
*******        Parameter            *******
******************************************/
.parameter {
    color: #ccc;
    width: fit-content;
    background-color: #444;
}

/**************     FORM      ************/
form, .form-item { display: flex; flex-direction: column; }
form { width: 200px; }
.form-item {
    gap: 5px;
    padding: 10px;
}

.tab-roll {
    color: #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    background-color: rgb(107, 107, 107);
    user-select: none;
}
.tab-roll:hover {
    filter: brightness(130%);
    cursor: pointer;
}
.tab-roll img { width: 12px; height: 12px; }
.tab-roll p { margin: 0; }

h5 { margin: 0; }
select { float: right; }
input { width: 60px; float: right; }
input[type="number"] {
    border: none;
    outline: none;
    text-align: right;
}
hr {
    width: 100%;
    border: 0;
    border-top: 1px solid #ccc;
}