        .tempContainer {
            display: flex;
            flex-direction: column;
            align-items: center;
            /* Ensure everything is centered in the container */
        }

        .currentTemps,
        .historicalTemps {
            width: 100%;
            /* Ensure full width utilization within the container */
            box-sizing: border-box;
            /* Includes padding and border in the element's total width and height */
        }

        .currentTemps {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 10px 0;
            /* Added padding for vertical spacing */
            margin-bottom: 20px;
            /* Additional bottom margin for spacing */
        }

        .currentTemps p {
            flex: 1;
            margin: 0;
            padding: 0 10px;
        }

        .historicalTemps {
            display: flex;
            flex-direction: column;
            align-items: center;
            border: 1px solid #0c20d3;
            border-radius: 5px;
            padding: 10px 10px;
            margin-bottom: 15px;
        }

        .historicalTemps p {
            text-align: center;
            /* Center-align the text for each historical entry */
            width: 100%;
            /* Ensure each paragraph uses the full width */
            margin: 5px 0;
            /* Add some vertical margin for separation */
        }