body {
    margin: 0;
    background: #696969;
    color: #eee;
    font-family: sans-serif;
    display: flex;
    align-items: center;      /* CENTRA TUTTO VERTICALMENTE */
    justify-content: space-between;
    padding: 0 20px;
    height: 40px;             /* PIÙ SPAZIO PER LE EMOJI */
}

.menu-links {
    display: flex;
    gap: 20px;
}

a {
    color: #6cf;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #fff;
}

.flags {
    display: flex;
    gap: 10px;
}

img {
    height: 24px;
    cursor: pointer;
}

.menu-links a.active {
    font-weight: bold;
    color: #00eaff;
    text-shadow: 0 0 10px #00eaff, 0 0 20px #00eaff;
}
