<style type="text/css">
    /* Master container to lock the width to 800px and center it */
    #change-main-container {
        max-width: 800px;
        width: 100%;
	    margin: 0 auto; 
        font-family: Arial, sans-serif;
    }
    .change-page-title {
        text-align: center;
        font-size: 24px;
        font-weight: bold;
        color: #2c3e50; /* A professional dark blue/gray */
        margin-top: 20px;
        margin-bottom: 20px;
        letter-spacing: 0.5px;
    }
    #change-controls-panel {
        display: flex;
        justify-content: center;
        gap: 30px; /* Space between each dropdown section */
        background-color: #f4f6f8; /* Very light, clean gray */
        padding: 20px;
        border-radius: 8px; /* Rounded corners */
        box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Subtle drop shadow */
        margin-bottom: 20px;
        box-sizing: border-box;
    }
    .change-control-group {
         display: flex;
         flex-direction: column;
         align-items: center;
    }                  

    /* Modernize the Labels (Replacing the <h3> tags) */
    .change-control-label {
         font-size: 14px;
         font-weight: bold;
         color: #4a5568;
         text-transform: uppercase;
         letter-spacing: 0.5px;
         margin-bottom: 8px;
    }         

    /* Style the Dropdowns */
    .change-dashboard-select {
         padding: 8px 12px;
         font-size: 15px;
         font-family: Arial, sans-serif;
         color: #333;
         background-color: #fff;
         border: 1px solid #cbd5e0;
         border-radius: 5px;
         cursor: pointer;
         transition: border-color 0.2s ease;
    }

    /* Add a nice blue highlight when the user clicks a dropdown */
    .change-dashboard-select:focus {
         outline: none;
         border-color: #3182ce;
         box-shadow: 0 0 0 2px rgba(49, 130, 206, 0.2);
    }

    /* Mobile Responsiveness for the Controls */
    @media (max-width: 600px) {
         #change-controls-panel {
             flex-direction: column;
             gap: 15px;
         }
         .change-dashboard-select {
             width: 100%; /* Makes dropdowns full-width on phones */
         }
    }
    #change-imgdiv {
        width: 100%;
        text-align: center;
    }
    #change-mapImage {
        max-width: 100%;
        height: auto;
        cursor: pointer;
    }
    .change-warning-text {
        font-family: Times, serif;
        font-size: large;
        color: red;
        text-align: center;
    }
    #change-cycle-info {
        text-align: center;
        font-family: Arial, sans-serif;
        color: #333;
    }
</style>
