/* General Styling */
#civilizations_parent,
.civilizations_parent {
    border-radius: 5px;
}

#civilizations_parent {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    justify-content: center; /* Align items vertically in the center */
    height: 100%; /* Ensure the div takes full height of the parent container */
    padding-top: 25px;
    padding-bottom: 20px;
}

.civilizations_country_header {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .civilizations_country_header {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .civilizations_country_header {
        font-size: 12px !important;
    }
}
