/* ──────────────────────────────────────────
   APPEND: Estilos para Multi-Canal e Fotos
   (adicionar ao final do frontend.css existente)
─────────────────────────────────────────── */

/* ── Lista de canais ── */
.wapro-channels-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wapro-channel-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 14px;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.25s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.wapro-channel-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--ch-color, #25D366);
    border-radius: 3px 0 0 3px;
    opacity: 0;
    transition: opacity .2s;
}

.wapro-channel-link:hover {
    border-color: var(--ch-color, #25D366);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.wapro-channel-link:hover::before {
    opacity: 1;
}

.wapro-ch-icon {
    width: 46px;
    height: 46px;
    background: var(--wapro-color, #25D366);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.wapro-ch-icon svg {
    width: 20px;
    height: 20px;
}

.wapro-ch-label {
    flex: 1;
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Divider entre canais e atendentes ── */
.wapro-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 14px 0 10px;
    color: #aaa;
    font-size: 12px;
}

.wapro-divider::before,
.wapro-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #eee;
}

/* ── Avatar com FOTO REAL ── */
.wapro-agent-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}