.monitor-visitas {
    position: absolute;
 top: 640px;
 left: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 300px;
    padding: 20px;
    margin: 20px auto;
    border: 2px solid #007bff;
    border-radius: 10px;
    background: #f9f9f9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-family: 'Arial', sans-serif;
z-index: 50000;
}

.contador-titulo {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contador-numero {
    font-size: 36px;
    font-weight: bold;
    color: #007bff;
    margin: 0;
    animation: fadeIn 1.5s ease-in-out;
}

/* Animación para la aparición del número */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
