.section-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 0px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.section-box h4 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.population-card {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
	margin-bottom: 10px;

}

.population-card:hover {
    transform: scale(1.05);
}

.population-card h5 {
    font-size: 18px;
    margin-bottom: 8px;
}

.text-primary {
    color: #007bff;
}

.text-success {
    color: #28a745;
}

.text-danger {
    color: #dc3545;
}

.text-muted {
    font-size: 14px;
    color: #6c757d;
}

.population-card p {
    font-size: 22px;
    font-weight: bold;
    margin: 5px 0;
}

.population-card small {
    font-size: 14px;
    display: block;
    margin-top: 5px;
}

.text-center { 
	text-align: center !important; 
}
