body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
}

.zonal-dashboard {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #333;
}

.summary {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.summary div {
    width: 48%;
    background: #e9ecef;
    padding: 15px;
    border-radius: 5px;
}

.table-container {
    margin-top: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 10px;
    border: 1px solid #dee2e6;
    text-align: left;
}

th {
    background: #0073aa;
    color: white;
}

tr:nth-child(even) {
    background: #f2f2f2;
}

button {
    margin-top: 20px;
}



