.country-name {
    text-align: center;
    margin: 0px auto;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1rem;
    white-space: normal;
    display: block;
    min-height: 2.2em;
}

.flag-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0px 0px;
    /* padding: 5px; */
    /* min-height: 131px; */
    max-width: 102px;
    flex: 1 0 80px;
}
.flag-container:hover {
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    transform: scale(1.05);
}


/* Estilo del dropdown */
.dropdown-menu {
    position: absolute;
    top: 75%;
    background: white;
    border: 1px solid #ccc;
    display: none;
    min-width: 129px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 5px;
}

.flag-container:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    list-style: none;
    text-align: center;
}

.dropdown-menu a {
    text-decoration: none;
    color: #333;
    padding: 5px 10px;
    display: block;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background-color: #f1f1f1;
}

.flag-labels {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flag-date {
    color: orange;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.6px;
    margin-top: 6px;
    text-align: center;
}


.icon-info {
    width: 15px;
    height: 15px;
    cursor: pointer;
    vertical-align: middle;
    margin-bottom: 2px;
}

.beta-text {
    color: #ff9900; /* naranja */
    font-weight: 600;
    margin-left: 8px;
    font-size: 0.85em;
    vertical-align: middle;
}

.beta-description {
    color: #666;
    font-size: 1.3em;
    font-weight: normal;
    margin: 6px 0 0 0;
    line-height: 1.4;
    text-align: center;

}