body {
    background: #0e0e12;
    color: #e9e9ef;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
}

header {
    padding: 20px;
    text-align: center;
    background: #17171d;
    border-bottom: 1px solid #2a2a39;
}

h1, h2 { margin: 0; }

.totals {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px;
}

.totalCard {
    padding: 30px 40px;
    border-radius: 14px;
    text-align: center;
    font-size: 1.4rem;
    color: white;
    min-width: 230px;
    transition: 0.2s;
}

.totalCard p {
    font-size: 2.2rem;
    margin: 10px 0 0;
    font-weight: bold;
}

.totalCard:hover {
    transform: scale(1.05);
}

.totalCard.national {
    background: #0077ff;
}

.totalCard.regional {
    background: #ff0068;
}

section { padding: 30px; }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.card {
    background: #15151b;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #222231;
    transition: 0.2s;
}

.card:hover {
    transform: scale(1.03);
    border-color: #0077ff;
}

.card ul {
    padding-left: 15px;
    margin-top: 10px;
    color: #cfd0d4;
}
.reasonTable {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 0.9rem;
}

.reasonTable th, .reasonTable td {
    border: 1px solid #222231;
    padding: 6px 8px;
    text-align: left;
}

.reasonTable th {
    background: #1e1e25;
    font-weight: 600;
}

.reasonTable tr:nth-child(even) {
    background: #121217;
}
