        .forecast-container div {
            margin-bottom: 20px;
            padding: 10px;
            background-color: #121725;
            border: 1px solid #413c3c;
            border-radius: 5px;
        }

        .forecast-container p {
            margin: 0;
            color: #7491c7;
            font-size: 16px;
        }

        .forecast-container span {
            display: block;
            font-weight: bold;
        }

        .dashboard {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        .forecast-main {
            display: flex;
            flex-direction: row;
            width: 100%;
            flex-wrap: nowrap;
            justify-content: space-between;
            align-items: flex-start;
        }

        .forecast-container {
            margin-left: 10px;
        }

        .forecast-container,
        .hourly-forecast-container {
            flex: 0 0 auto;
            padding: 10px;
            margin: 5px;
            background-color: #1c243f;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .hourly-forecast-container {
            width: 9%;
            min-width: min-content;
        }

        .hourly-forecast-container div {
            border: 1px solid #413c3c;
            border-radius: 5px;
            padding: 10px;
            margin-right: 10px;
        }

        .hourly-forecast-container span {
            display: block;
            font-weight: bold;
            border: 1px solid #413c3c;
            border-radius: 5px;
        }

        .charts {
            flex: 1 1 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 5px;
            /* Adds more space to the right of the charts container */
            background-color: #1c243f;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: max-height 0.3s ease-in-out;
        }

        .forecast-container {
            margin-left: 5px;
            /* Adds more space to the left of the forecast container */
        }


        .chart-container {
            display: flex;
            /* Enable flexbox */
            flex-direction: column;
            /* Stack children vertically */
            justify-content: center;
            /* Center vertically */
            align-items: center;
            /* Center horizontally */
            width: 93%;
            /* Take full width of its parent */
            margin: 10px 10px;
            /* Margin for spacing, centered horizontally */
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            background-color: #1c243f;
            border: 1px solid #413c3c;
            border-radius: 5px;
        }

        .charts-afd-wrapper {
            display: flex;
            flex-grow: 1;
            flex-direction: column;
            width: 100%;
            /* Adjust width as needed or use flex property */
        }

        .afd-container {
            display: flex;
            background-color: #1c243f;
            border: 1px solid #413c3c;
            border-radius: 5px;
            flex-direction: column;
            align-items: center;
            margin: 10px 10px;
            padding: 20px 20px;
            justify-content: center;
            overflow: hidden;
            transition: max-height 0.3s ease-in-out;

        }

        .forecastWrapper {
            display: flex;
            border-radius: 5px;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            transition: max-height 0.3s ease-in-out;
        }

        .toggleButton {
            padding: 10px;
            background-color: #121725;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin: 10px 0;
            transition: background-color 0.3s ease;
            width: 50%;
            align-self: center;
        }

        .toggleButton:hover {
            background-color: #7491c7;
            /* Lighter blue background on hover */
        }

        .toggleButton:focus {
            outline: none;
            /* Removes the outline to keep the style clean */
            box-shadow: 0 0 0 2px #7491c7;
            /* Adds a focus shadow */
        }

        .canvas {
            width: 100%;
            /* Full width of the container */
            height: auto;
            /* Height set to auto, adjust as necessary */
            display: flex;
            justify-content: center;
            /* Center content horizontally */
            align-items: center;
            /* Center content vertically */
        }

        .canvas,
        canvas {
            width: 100%;
            /* Ensure it takes full width */
            height: auto;
            /* Adjust height as needed, could be fixed or responsive */
        }

        .forecast-content {
            width: auto;
        }

        .forecast-stats {
            display: flex;
            align-items: center;
            /* Align items vertically in the center */
            justify-content: space-between;
            /* Distribute space between text and image */
            margin-top: 10px;
        }

        .forecast-stats p {
            flex: 1;
            /* Allows the paragraph to take up the remaining space */
            margin-right: 20px;
            /* Adds some space between the text and the image */
        }

        .hourly-forecast-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .zip-input-container {
            margin-top: 20px;
            text-align: center;
        }

        #zipInput {
            padding: 8px;
            width: 200px;
            margin-right: 10px;
            background-color: #1c243f;
            /* Dark blue background */
            color: #fff;
            /* White text color */
            border: 1px solid #413c3c;
            /* Dark border */
            border-radius: 5px;
            /* Rounded corners */
        }

        button {
            padding: 10px 15px;
            margin-bottom: 10px;
            background-color: #121725;
            /* Darker blue background */
            color: #fff;
            /* White text color */
            border: none;
            border-radius: 5px;
            cursor: pointer;
            /* Pointer cursor on hover */
            transition: background-color 0.3s ease;
            /* Smooth transition for hover effect */
        }

        img {
            border-radius: 5px;
        }

        button:hover {
            background-color: #7491c7;
            /* Lighter blue background on hover */
        }

        button:focus {
            outline: none;
            /* Removes the outline to keep the style clean */
            box-shadow: 0 0 0 2px #7491c7;
            /* Adds a focus shadow */
        }

        @media (max-width: 768px) {
            .forecast-main {
                flex-direction: column;
                /* Stack the children vertically */
            }

            .charts {
                /*order: -1;
                /* This will make the charts appear first */
                width: 100%;
                margin: 5px 0;
            }

            .forecast-container,
            .hourly-forecast-container {
                width: 100%;
                margin: 5px 0;
            }

            .afd-container {
                order: 10;
                max-height: 0;
                overflow: scroll;
            }
            .forecastWrapper {
                width: 100%;
                margin: 5px 0;
            }
        }