.calculator-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    max-width: 500px;
	margin: 0 auto;
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
}

.calculator-container h2 {
    text-align: center;
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 25px;
}

.input-group {
    margin-bottom: 20px;
}

.calculator-container label {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 8px;
    font-size: 14px;
}

.calculator-container label span {
    color: #3498db;
    font-weight: 700;
}

.calculator-container input[type=range] {
    width: 100%;
    cursor: pointer;
}

.results-section {
    margin-top: 30px;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 16px;
    color: #495057;
}

.cost-value {
    font-weight: 600;
}

.calculator-container hr {
    border: 0;
    border-top: 1px solid #dee2e6;
    margin: 20px 0;
}

.savings-highlight {
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 0;
}