        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            color: #333;
            margin: 0;
            padding: 0;
        }


        header {
            background-color: #5bbad5;
            color: white;
            padding: 10px 0;
            text-align: center;
        }


        h1 {
            font-size: 2rem;
        }


        #TemperatureChart {
            margin: 20px auto;
            max-width: 1000px;
            height: 300px;
            border: 1px solid #ccc;
            background-color: white;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }


        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
            text-align: center;
        }


        .input-group {
            margin: 20px 0;
        }


        .range-input {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 40px 0;
        }


        .range-input input {
            width: 70%;
        }


        .range-input label {
            font-size: 1.2rem;
            margin-right: 10px;
            margin-left: 10px;
        }


        button {
            background-color: #5bbad5;
            color: white;
            padding: 10px 20px;
            font-size: 18pt;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }


        button:hover {
            background-color: #47a0c4;
        }


        .config-button {
             margin-top: 120px;
        }


        .config-btn {
            background-color: #da532c;
        }


        .config-btn:hover {
            background-color: #b33c24;
        }


        footer {
            margin-top: 50px;
            text-align: center;
            color: #666;
        }


        /* Slider customisation */
        input[type="range"] {
            -webkit-appearance: none;
            appearance: none;
            width: 100%;
            height: 8px;
            background: #ddd;
            border-radius: 5px;
            outline: none;
        }


        input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 25px;
            height: 25px;
            background-color: #5bbad5;
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
        }


        input[type="range"]::-moz-range-thumb {
            width: 25px;
            height: 25px;
            background-color: #5bbad5;
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
        }