#map {
    width: 100%;
    height: 400px;
    background-color: #212529 !important;
    border-radius: 8px;
    border: 1px solid #495057;
}

.country-badge {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}