.canvas-box {
width: 100%;
max-width: 760px;
margin: 0 auto; padding: 0; box-sizing: border-box;
background: transparent;
box-shadow: none;
}
.inputs {
display: flex;
flex-direction: column;
align-items: flex-start;
}
.input {
width: 100%;
}
.input label {
display: block;
font-weight: 500;
margin-bottom: 6px;
}
.input input {
width: 100%;
padding: 8px 10px;
border: 1px solid #ccc;
border-radius: 6px;
font-size: 1em;
margin-bottom: 10px;
box-sizing: border-box;
}
.calc_input_class {
width: 100%;
}
.calc_input_class button {
width: 100%;
padding: 8px 16px;
margin-top: 10px;
background: #007bff;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 15px;
}
.calc_input_class button:hover {
background: #0056b3;
}
.results {
text-align: left;
margin-top: 24px;
margin-bottom: 12px;
font-size: 1.1em;
}
.results-message {
min-height: 24px;
margin-top: 8px;
}
#error-message {
color: red;
display: inline-block;
margin-top: 5px;
}
#myCanvas {
display: block;
width: 100%;
max-width: 100%;
height: auto;
border: 1px solid #ccc;
border-radius: 8px;
background: #fff;
box-sizing: border-box;
padding-bottom: 40px;
}