body {
    margin: 0;
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
}

#dashboard {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
}

#stats-panel {
    height: 100vh;
    overflow-y: auto;
}

#deselect-btn {
    display: none;
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 1000;
    padding: 10px 22px;
    background: #4e79a7;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(60,80,120,0.08);
    cursor: pointer;
    transition: background 0.2s;
}
#deselect-btn:hover {
    background: #35507a;
}

#map-select-info {
    margin-left: 20px;
}

#stats-content {
    margin-top: 20px;
}

#options-bar {
    top: 0;
    position: sticky;
    display: flex;
    width: 100%;
}

#chart-container {
    height: 300px;
}

#subcharts-container {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px
}

.subchart-container {
    border: 2px solid black;
    border-radius: 10px;
}

.subchart-header{
    display: flex;
    justify-content: center;
    margin-top: 5px;
    margin-bottom: 5px;

    h4 {
        margin: 5px;
    }
}

.subchart {
    display: flex;
    border-radius: 10px;
    height: 180px;
    margin-bottom: 15px;
}

/* This allows for the charts to be resizable */


canvas {
    width: 100% !important;
    height: 100% !important;
}
