.flag-visitors-btn {
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.2), rgba(0, 102, 255, 0.2)) !important;
    color: #00f2ff !important;
    border-color: #00f2ff !important;
    font-size: 0.8rem !important;
    padding: 10px !important;
}
.flag-visitors-btn:hover {
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.4), rgba(0, 102, 255, 0.4)) !important;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.4) !important;
}
.flag-icon-map {
    position: absolute;
    transform: translate(-50%, -50%) scale(0);
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
    border-radius: 2px;
}
@keyframes popIn {
    to { transform: translate(-50%, -50%) scale(1); }
}
.visitor-stat-badge {
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-left: 3px solid #00ff41;
    border-radius: 4px;
    padding: 8px 12px;
    color: #00ff41;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
    transition: 0.2s;
}
.visitor-stat-badge:hover {
    background: rgba(0, 255, 65, 0.15);
    border-color: #00ff41;
}
.visitor-stat-badge .country-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.visitor-stat-badge img {
    width: 20px;
    box-shadow: 0 0 5px rgba(255,255,255,0.2);
}
.visitor-stat-badge .count {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    color: #fff;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

/* Personalizzazione Scrollbar per statistiche */
#visitor-stats::-webkit-scrollbar {
    width: 6px;
}
#visitor-stats::-webkit-scrollbar-track {
    background: rgba(0, 255, 65, 0.05);
    border-radius: 4px;
}
#visitor-stats::-webkit-scrollbar-thumb {
    background: #00ff41;
    border-radius: 4px;
}
