.flag-display {
    width: 220px;
    height: 145px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 4px solid #fff;
    background: #f5f5f5;
    animation: fadeIn 0.5s ease;
    margin: 0 auto 2rem auto;
}

.flag-display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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


.victory-country-info .success-list {
    text-align: left;
    font-weight: normal;
    color: inherit;
    padding: 0;
    list-style-type: none;
    font-size: smaller;
}