body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
	font-size: 17px;
}

h2 {
    text-align: center;
	font-size: 13px;
	font-weight: 100;
}

.input-group, .result-group {
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

label {
    margin-right: 10px;
    width: 100px;
}

input[type="number"], input[type="text"] {
    width: 100px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="text"] {
    background-color: #f9f9f9;
    cursor: not-allowed;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

button:hover {
    background-color: #0056b3;
}

.chart-container {
    margin-top: 20px;
    text-align: center;
	height: 30vh;
}