body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.container {
    display: flex;
    /*justify-content: center;*/
    /*align-items: center;*/
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 80%;
}
.input-section {
    display: flex;
    flex-direction: column;
    /*flex: 1;*/
    margin: 20px;
    max-width: 300px;
}

.input-section:nth-child(odd) {
    margin-right: 20px; /* Space between columns */
}
.input-section label {
    display: block;
    margin-bottom: 5px;
}
.input-section input {
    width: calc(100% - 16px); /* Adjusted width to accommodate margin and padding */
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.input-section select {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.input-section button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #5c6bc0;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}
.input-section button:hover {
    background: #3949ab;
}
.result-section {
    flex: 1;
    margin: 10px;
    max-width: 700px;
}
h1 {
    text-align: center;
}
.result {
    margin-top: 20px;
    text-align: center;
}
.result p {
    font-size: 18px;
    color: #333;
}
.result .summary{
    display: none;
    text-align: left;
}
canvas {
    max-width: 100%;
    /*height: 400px;*/
}