body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f7f6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

h1, h2, h3 {
    color: #2c3e50;
    text-align: center;
}
h2 {
    margin-top: 0;
}

#loading {
    text-align: center;
    font-size: 1.2em;
    padding: 20px;
}

.charts-section, .summary-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: space-around;
}

.chart-container {
    flex: 1 1 400px; /* Grow, shrink, basis */
    min-width: 300px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.summary-card {
    flex: 1 1 300px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}
.summary-card h3 {
    margin-top: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}
.summary-card p {
    margin: 5px 0;
    font-size: 0.9em;
}
.summary-card strong {
    color: #555;
}

.categories-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.category-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    background-color: #f9f9f9;
}
.category-card h3 {
    margin-top: 0;
    font-size: 1.2em;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.category-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9em;
}
.category-table th, .category-table td {
    border: 1px solid #e0e0e0;
    padding: 8px;
    text-align: left;
}
.category-table th {
    background-color: #e9ecef;
    font-weight: bold;
}
.category-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.overall-indicators-section {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}
#overallIndicators {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
#overallIndicators span {
    background-color: #e9ecef;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.9em;
}


.cta-box {
    background: #f0f8ff;
    border-left: 6px solid #0077cc;
    padding: 20px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #333;
    margin: 20px auto;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    border-radius: 8px;
}
.cta-box a {
    color: #0077cc;
    font-weight: bold;
    text-decoration: none;
}
.cta-box a:hover {
	text-decoration: underline;
}
