.ev-simulator-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500 !important;
    padding: 15px 10px 10px;
}

input[type="number"],
input[type="range"],
select {
    width: 100%;
    padding: 0px;
    border: 1px solid #eceff3;
    border-radius: 10px;
}

button {
    background-color: #0073aa;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #005177;
}

.results-container {
    margin-top: 20px;
    background-color: white;
    padding: 15px;
    border-radius: 4px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.result-item-green {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #42d697;
    font-weight: bold;
}

.result-item span:last-child {
    font-weight: bold;
}