/* css for population map*/
 /* Styling the select dropdown */
 #year-selector:hover, button:hover {
    background-color: black;
    color: white;
    transition-duration: 0.4s;
    cursor: pointer;
}

/* Flex container for both map and chart containers */
.map-container, .chart-container {
    flex: 1;  
    display: flex;
    flex-direction: column;  
    justify-content: center;  
    align-items: center;
    padding: 15px; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);  /* Shadow for visual depth */
}

/* Adjustments for the specific map and chart elements */
#lamap, #lineChart {
    width: 100%; 
    height: 100%;  
}



/* Map and chart container adjustments */
.population-container {
    flex: 1 1 48%; /* Flex basis set to 48% to account for gap */
    background: rgb(227, 247, 242); /* Light background color */
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px; /* Set a minimum height */
}



/* Styling for the buttons and dropdown button for the popualtion map */
#year-selector option {
    color: black; 
    font-size: 18px; 
}

.controls > .dropdown, .controls > button {
    margin: 0 5px; 
}
.controls .btn {
    color: black;
}
.controls > .dropdown > button, .controls > button {
    width: 200px; 
    height: 50px; 
    font-size: 16px; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px; 
}

/*css for modal text here*/
.modal-text-large {
    font-size: 18px; 
    color: black; 
}


.full-screen-background {
    background-image: url('../images/population_map.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 0;
}
.green-btn {
  
    color: black; /* White text */
    border: none; 
}
.stealth-link {
    color: black; 
    text-decoration: none; 
    transition: text-decoration 0.3s ease; 
}

.stealth-link:hover, .stealth-link:focus {
    text-decoration: underline; /* Underline on hover or focus for accessibility */
    color: blue; 
}
.strong-red {
    color: red; 
}
.strong-blue{
    color:blue;
}