/* Global Styles */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f7f9;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Helvetica', sans-serif;
    color: #003863;
    font-weight: 600;
}

h1 {
    font-size: 48px;
    margin-left: 100px; 
}

h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 22px;
}

p {
    font-size: 25px;
    line-height: 1.6;
    color: #333;
}

/* Top section */
.top-section {
    background-color: #2c3e50;
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.top-section h1, .top-section p {
    color: white; /* This will make just the h1 and p elements white */
}

.top-section p {
    font-size: 1.1em;
}

/* Container for map and instructions */
.container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 20px;
}

/* Left column: Map and controls (3/5 width) */
.map-column {
    flex: 2;
    min-width: 450px; /* Minimum width to avoid excessive shrinking */
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}
.iframe-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 1000px; /* Double the original height of 700px */
    width: 90%; /* Keep the full width */
    border: none;
    margin: 0 auto; /* Center the container */
}

/* Adjust iframe size */
.iframe-container iframe {
    top:0;
    left: 0;
    width: 100%; /* Adjust this value if needed */
    height: 100%; /* Full height of the container */
    border: 2px solid #bdc3c7;
    border-radius: 8px;
    border: none;
    justify-content: center;
    align-items: center;
}


.controls {
    margin-bottom: 20px;
}

.controls label {
    font-weight: 500;
    margin-right: 10px;
    font-size: 1em;
    color: #34495e;
}

select {
    margin-right: 15px;
    padding: 8px;
    font-size: 1em;
    border-radius: 4px;
    border: 1px solid #ccc;
    background-color: #ecf0f1;
    color: #2c3e50;
}

select:hover {
    border-color: #2980b9;
}

iframe {
    width: 100%;
    height: 700px;
    border: 2px solid #bdc3c7;
    border-radius: 8px;
}

/* Legend */
#legend {
    margin-top: 15px;
    padding: 10px;
    background-color: #ecf0f1;
    border-radius: 5px;
    font-weight: 500;
    color: #008fcf;
}

/* Right column: Text content (2/5 width) */
.text-column {
    flex: 1.2;
    min-width: 300px; /* Minimum width for the text column */
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.text-column h2 {
    color: #34495e;
}

.text-column ul {
    margin: 15px 0;
    padding-left: 20px;
}

.text-column ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

/* Footer note */
p {
    font-size: 1.1em;
}

/* Data Request Box */
.data-request-row {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: #fff;
    max-width: 100%;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 1.05em;
}

.data-request-row p {
    margin-bottom: 0;
}

.data-request-row strong {
    font-size: 1.1rem;
}

/* Improve layout and responsiveness for smaller screens */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
    }

    iframe {
        height: 600px;
    }
}

/* Banner with ProBleu colors */
.bg-image {
    background-size: cover;
    background-position: center;
    height: 200px;
    color: white;
}

/* Text color */
.text-white-title {
    color: white;
    margin-left: 50px;
    font-size: 3rem; 
    font-weight: 600;
    margin-bottom: 20px;
}

