/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f9f9f9;
    color: #222;
    min-height: 100vh;
}
header {
    background: #FFFFFF;
    color: #fff;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo {
    display: flex;    
    font-size: 1.2rem;
    font-weight: bold;
}
.logo img {
    width: 100px;
    height: 80px;  
}

.logo-text {
    margin-left: 0.75rem;
    color: #0078d7;
    font-size: 1.3rem;
    font-weight: bold;
    /*letter-spacing: 1px;*/
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    /*color: #fff;*/
    color: #0078d7;
    cursor: pointer;
}
nav {
    display: flex;
    gap: 1rem;
}
nav a {
    color: #000000;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}
nav a:hover {
    color: #ffd700;
}
main {
    padding: 2rem 1rem;
}
.map {
    background: #fff; /*#e3f2fd;*/
    padding: 2rem 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}
.content {
    background: #fff;
    padding: 1.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    text-align: center;
}
footer {
    text-align: center;
    padding: 1rem;
    background: #222;
    color: #fff;
    position: fixed;
    width: 100%;
    bottom: 0;
}
@media (max-width: 700px) {
    nav {
        display: none;
        flex-direction: column;
        background: #0078d7;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        padding: 1rem 0;
    }
    nav.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    main {
        padding-bottom: 4rem;
    }
    footer {
        position: static;
    }
}


#myPlot {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.table-center {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}

.trend-table {
    max-width: 350px;
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border-radius: 8px;
    overflow: hidden;
}

.trend-table th, .trend-table td {
    padding: 0.5rem 0.75rem;
    text-align: left;
    font-size: 0.95rem;
    white-space: nowrap;
}

#tracker {
    width: 100%;
    max-width: 700px;
    height: 400px;
    margin: 0 auto 1rem auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    background: #eaf6ff;
}