#map {
    height: 600px;
    width: 100%;
    margin-top: 20px;
}
.legend {
    background-color: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
.legend-item {
    margin: 5px 0;
}
.color-box {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 5px;
    border-radius: 50%;
}

body {
    width: 90%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.25em;
    line-height: 30px;
}

@media (max-width: 768px) {
    body {
        width: 95%;
        font-size: 1em;
        line-height: 24px;
    }
}

.striped-table {
    border-collapse: collapse;
    width: 100%;
}

.striped-table th, .striped-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.striped-table th {
    background-color: #f2f2f2;
    border-bottom: 2px solid #ddd;
}

.striped-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.striped-table tr:nth-child(odd) {
    background-color: #ffffff;
}

.striped-table tr:hover {
    background-color: #e6e6e6;
}
