.swachh-stats-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    max-width: 1200px;
    margin: 20px auto;
    color: #334155;
    line-height: 1.5;
}

.swachh-stats-error {
    background: #fee2e2;
    color: #991b1b;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #f87171;
    margin: 20px 0;
    font-weight: 500;
}

.swachh-stat-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    padding: 24px;
    margin-bottom: 24px;
}

.swachh-stat-total {
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.swachh-stat-total .swachh-stat-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-bottom: 8px;
}

.swachh-stat-total .swachh-stat-value {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.swachh-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .swachh-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.swachh-stat-section {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    padding: 24px;
}

.swachh-section-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1e293b;
    margin-top: 0;
    margin-bottom: 20px;
}

/* Facility Grid */
.swachh-facility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.swachh-facility-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    border: 1px solid #f1f5f9;
}

.swachh-item-label {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 8px;
}

.swachh-item-value {
    font-size: 24px;
    font-weight: 700;
}

.swachh-color-brand { color: #6366f1; }
.swachh-color-blue { color: #2563eb; }
.swachh-color-amber { color: #d97706; }

/* Rating Grid */
.swachh-rating-grid {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.swachh-rating-item {
    flex: 1;
    background: #f8fafc;
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
    border: 1px solid #f1f5f9;
}

.swachh-rating-stars {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.swachh-rating-value {
    font-size: 20px;
    font-weight: 700;
    color: #334155;
}

.swachh-color-green { color: #10b981; }
.swachh-color-yellow { color: #eab308; }
.swachh-color-red { color: #ef4444; }

@media (max-width: 480px) {
    .swachh-facility-grid {
        grid-template-columns: 1fr;
    }
    
    .swachh-rating-grid {
        flex-direction: column;
    }
}
