body {
    background-color: #1D2B39; /* Set the same background color */
    margin: 0; /* Remove default body margin */
    padding: 0; /* Remove default body padding */
    font-family: arial, helvetica, sans-serif;
    color: #ccc;
}
a {
    color: #ccc;
    text-decoration: none;
}
a:hover {
    color: white;
    text-decoration: underline dotted;
}
a.active {
    color: white;
    font-weight: bold;
}
.container {
    width: 100%; /* Ensure the parent spans the full width */
}
.parent-container {
    max-width: 1340px;
    margin: 0 auto;
    font-size: 16px;
    padding-top: 8px;
    background-color: #1D2B39;
}
.navi-container {
    display: flex; /* Make the container a flexbox */
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    width: 100%; /* Ensure full width */
    background-color: #1D2B39; /* Optional: Matches navigation background */
    box-sizing: border-box; /* Include padding and border in width calculations */
}
.logo {
    margin-right: auto; /* Pushes the logo to the left */
    padding: 10px;
}
.logo-footer {
    margin: 0 auto;
    padding: 10px;
}
@media (max-width: 600px) {
    .logo {
    margin-right: auto; /* Pushes the logo to the left */
    padding: 5px;
    width: 225px;
    }
}
.navi {
    background-color: #1D2B39;
    padding: 10px 20px;
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap */
    justify-content: flex-start; /* Align items to the left */
    align-items: center;
    font-size: 16px;
    font-family: Montserrat, sans-serif;
    gap: 10px; /* Add spacing between items when stacked */
}
.navi-links {
    margin-right: 15px;
}
/* Adjust layout for smaller screens */
@media (max-width: 600px) {
    .navi {
        flex-direction: column; /* Stack items vertically */
        align-items: flex-start; /* Align stacked items to the left */
    }

    .navi-links {
        width: 100%; /* Optional: Make links take full width */
    }
}
/* The container of the dropdown */
.dropdown {
    display: flex;
    flex-direction: row;
    gap: 15px;
    color: #ccc; /* Text color */
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    font-size: 16px;
}
/* Main container of the dropdown */
.dropdown-style {
    width: 180px;
    margin: 0 auto;
    font-size: 16px;
    color: #ccc;
    background-color: #1D2B39; /* Background color for the dropdown container */
    border: 1px solid #415160;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* The dropdown's main input field */
.dropdown-style .Select-control {
    background-color: #2E3B4E; /* Background color of the input field */
    color: #ccc; /* Text color */
    border: none; /* Remove border */
}

/* The selected value inside the dropdown input */
.dropdown-style .Select-value,
.dropdown-style .Select-single-value {
    color: #ccc; /* Ensure text color matches the design */
}

/* Menu container (dropdown options) */
.dropdown-style .Select-menu-outer {
    background-color: #2E3B4E; /* Background color of the dropdown options */
    color: #ccc; /* Default text color for options */
    border: 1px solid #415160; /* Match the theme */
}

/* Individual options in the dropdown menu */
.dropdown-style .Select-option {
    background-color: #2E3B4E; /* Background of each option */
    color: #ccc; /* Default text color */
    padding: 10px;
}

/* Hover effect for dropdown options */
.dropdown-style .Select-option:hover {
    background-color: #415160; /* Background color on hover */
    color: white; /* Text color on hover */
}

/* Highlight the currently selected option in the dropdown menu */
.dropdown-style .Select-option.is-selected {
    background-color: #1D2B39; /* Background color of selected option */
    color: white; /* Text color of selected option */
}

/* Selected item inside the input field after selection */
.dropdown-style .Select-placeholder {
    color: #ccc; /* Placeholder text color */
}

.dropdown-style .Select-input {
    color: #ccc; /* Ensure the input text is visible */
}

/* For better visibility of the selected option */
.dropdown-style .Select-value-label {
    color: #ccc !important; /* Enforce color for the selected label */
}

/* Style for grid layout, mobile friendly */

/* Default grid for larger screens */
.box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); /* Set the column size */
    gap: 10px; /* Add spacing between grid items */
    padding: 5px;
    color: #000;
    text-align: center;
}

.grid-box {
    display: flex;
    justify-content: space-between; /* Ensures elements are aligned left and right */
    align-items: center; /* Aligns elements vertically */
    padding: 10px;
    background-color: #bababa;
    border-radius: 8px;
    line-height: 1.4;
}

div.box {
    padding: 5px;
    background-color: #bababa;
    border-radius: 8px;
    line-height: 0.4;
    color: #222;
}

/* Default grid for larger screens */
.graph-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(550px, 1fr)); /* Set the column size */
    gap: 15px; /* Add spacing between grid items */
    padding: 10px;
    margin-top: 12px;
    font-size: 14px;
}

/* For smaller screens (mobile) */
@media (max-width: 600px) {
    .graph-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Allow the columns to shrink */
        font-size: 10px;
    }
}

/* Optional: Add additional styling for the graph container */
.graph-grid .dcc-graph {
    width: 100%; /* Ensure graphs span the full width */
    height: auto; /* Maintain aspect ratio */
}

.footer-box {
    border-top: 3px dotted #415160;
    margin: 0 auto;
    width: 100%;
    }
}
                        