/* General Reset */
body {
    height: 100vh;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #F5F5F5;
}
/* Navbar */
.navbar {
    background-color: #0B1C39;
    color: white;
    padding: 10px 20px;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0; /* Prevents it from shrinking */
}

#map {
    flex-grow: 1; /* Makes it take up the remaining space */
    width: 100%;
}

.menu-logo {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between menu icon and logo */
}

.menu-icon {
    font-size: 1.5em;
    cursor: pointer;
    color: white;
    margin-right: 10px;
}

.navbar .logo {
    font-weight: bold;
    font-size: 1.5em;
}

.date-user {
    color: white;
    font-size: 1em;
    display: flex;
    gap: 10px;
    align-items: center;
}

.graph {
    flex: 1;
    border: none;
    height: 250px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Dropdown Section */
.dropdown-section {
    margin: 20px;
    text-align: center;
}

select {
    padding: 10px;
    font-size: 1em;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Side Menu Styles */
.side-menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1001; /* Ensure it appears above other content */
    top: 0;
    left: 0;
    background-color: #0B1C39;
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
    white-space: nowrap; /* Ensures the text does not wrap */
}

.side-menu a {
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.2em;
    color: white;
    display: block;
    transition: 0.2s;
}

.side-menu a:hover {
    background-color: #575757;
}

.side-menu .close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2em;
    cursor: pointer;
}