  .savings-calculator {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            width: 90%;
            max-width: 400px;
            text-align: center;
        }
        label, input, span, button {
            display: block;
            margin: 10px auto;
        }
        input[type=range] {
            width: 100%;
        }
        button {
            background-color: #28a745;
            color: white;
            border: none;
            padding: 10px;
            border-radius: 5px;
            cursor: pointer;
        }
        button:hover {
            background-color: #218838;
        }
        canvas {
            margin-top: 20px;
					width: 100% !important;
    height: 300px !important;
        }
