h1 {
    margin-bottom: 20px;
    color: var(--theme);
}
.calculator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.inputs {
    flex: 1;
}
.inputs label {
    display: block;
    margin-top: 20px;
    margin-bottom: 5px;
    font-weight: bold;
}
.inputs input[type="range"] {
    width: 100%;
}
.inputs input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: none;
    background-color: var(--theme-light);
    border: 1px solid #fff;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
}
.chart-section {
    flex: 1;
    max-width: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.results {
    display: grid;
    gap: 10px;
}
.results p {
    font-size: 18px;
    padding: 8px 10px;
    border: 1px solid #ddd;
}
@media screen and (max-width:767px) {
    .calculator {
        grid-template-columns: 100%;
    }
}