.agentes-online .witget-agentes-online {
    display: block;
    position: fixed;
    bottom: 0;
    right: 0;
    width: auto;
    background-color: var(--color-blanco);
    border: 2px solid var(--color-verde);
    z-index: 5;
    border-radius: 3px;
    font-weight: 500;
    letter-spacing: 1.2px;

    padding: 5px 16px;
    text-align: center;
    opacity: 0.6;
    cursor: grab;
}

.agentes-online .witget-agentes-online:active {
    cursor: grabbing;
}

.agentes-online .witget-agentes-online:hover {
    cursor: pointer;
    opacity: 1;
}

.container-agentes-online {
    display: block;
    position: fixed;
    right: -220px;              /* OCULTO fuera de pantalla */
    bottom: 0;
    width: 220px;
    height: 320px;
    border: 2px solid var(--color-verde);
    background-color: var(--color-blanco);
    border-radius: 3px;
    padding: 7px 5px;
    z-index: 6;
    text-align: center;
    font-weight: 500;

    transition: right 0.35s ease;
}

/* cuando se muestra */
.container-agentes-online.activo {
    right: 0;
}

.cerrar-witget-online {
    position: absolute;
    top: 5px;
    right: 7px;
    font-size: 15px;
    padding: 2px 5px;
    border: 1px solid var(--color-rojo);
    color: var(--color-rojo);
    border-radius: 50%;
}

.cerrar-witget-online:hover {
    cursor: pointer;
    opacity: 0.7;
}

.cont-agentes-online {
    text-align: left;
    margin-top: 20px;
    padding-left: 5px;
    font-weight: 400;
    width: 100%;
}

.agente-online {
    display: flex;
    align-items: center;
    justify-content: space-between; /* texto izquierda, círculo derecha */
    padding: 6px 10px;
    margin-bottom: 10px;
}

.circulo-online {
    width: 10px;
    height: 10px;
    background-color: #2ecc71;
    border-radius: 50%;
    flex-shrink: 0;

    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    animation: pulsoOnline 1.4s infinite;
}

@keyframes pulsoOnline {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(46, 204, 113, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

.circulo-offline {
    width: 10px;
    height: 10px;
    background-color: #e74c3c;
    border-radius: 50%;
    flex-shrink: 0;
}



/* Estilos cuando la ALTURA sea 900px o menos (MONITORES MEDIANOS) */
@media (max-height: 900px) {

   .agentes-online .witget-agentes-online {
        display: block;
        position: fixed;
        bottom: 110px;
        right: 0;
        height: 90px;
        width: auto;
        background-color: var(--color-blanco);
        border: 2px solid var(--color-verde);
        z-index: 5;
        border-radius: 3px;
        font-weight: 500;
        letter-spacing: 1.2px;

        writing-mode: vertical-rl;
        text-orientation: mixed;
        padding: 6px 4px;
        text-align: center;
        transform: rotate(180deg);
        opacity: 0.6;
        font-size: 14px;
        cursor: grab;
    }

    .agentes-online .witget-agentes-online:active {
        cursor: grabbing;
    }

}