        #solarTimes {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            margin: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            width: 75%;
        }

        #solarTimes>div {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            justify-content: center;
            margin-bottom: 20px;
            padding: 10px;
            background-color: #a15804;
            border-radius: 8px;
            margin: 10px;
            flex: 1 1 45%;
            /* Apply this to all except the specific one */
            width: fit-content;
        }

        /* Target the first div of the last five specifically */
        #solarTimes>div:nth-last-child(5) {
            flex: 1 1 100%;
        }

        #solarTimes h3 {
            color: #ec780a;
            width: 100%;
        }

        #solarTimes p {
            margin: 5px 0;
            color: aliceblue;
        }

        .psh {
            display: flex;
            flex-direction: column;
            align-items: center;
            /* Centers the children (dropdown) horizontally */
            justify-content: center;
            /* Centers the children vertically if needed */
            text-align: center;
            /* Ensures the text inside the container is centered */
            margin:auto;
            margin-bottom: 10px;
            /* Additional centering for the entire block if it's within a larger container */
            width: 100%;
            /* Adjust the width as necessary */
        }

        .psh h3 {
            margin-bottom: 10px;
            /* Space between the header and the dropdown */
        }
        .peak_selector {
            padding: 10px;
            margin-bottom: 10px;
            background-color: #1c243f;
            border: 1px solid #413c3c;
            color: #fff;
            border-radius: 5px;
            text-align: center;
        }