.country-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    text-align: center;
}

.country-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    color: black;
    transition: 0.3s;
}

.country-item:hover {
    background-color: #f5f5f5;
}

.country-item img {
    width: 50px;
    height: 30px;
    margin-bottom: 5px;
}