body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #152455;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* Navigation Bar */
.navbar {
    width: 100%;
    background-color: #152455;
    padding: 15px 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.navbar ul li {
    margin: 0 20px;
}

.navbar ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}

.navbar ul li a:hover {
    text-decoration: underline;
}

/* Main Content */
.container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    width: 80vw;
    height: 80vh;
    margin-top: 70px;
}

.box {
    background-color: white;
    color: #152455;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    padding: 10px;
    text-align: center;
}

/* Map Styling */
.map {
    width: 90%;
    height: 90%;
    border-radius: 15px;
    border: 1px solid #ccc;
}

/* Chart Styling */
.chart {
    width: 90%;
    height: 250px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
    }
}
/* Chart Header with Reset Button */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
}

/* Reset Button */
.reset-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #152455;
    transition: 0.3s;
    margin-left: auto; /* Ensures alignment to the right */
}

.reset-btn:hover {
    color: #FF5733;
}
