/* Estilos base */
.wkeu-floating-button {
    position: fixed;
    bottom: 20px;
    z-index: 99999;
    transition: all 0.3s ease;
}

.wkeu-pos-right {
    right: 20px;
}

.wkeu-pos-left {
    left: 20px;
}

/* BotÃ³n principal */
.wkeu-main-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: white;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    outline: none;
}

.wkeu-style-rounded .wkeu-main-btn {
    border-radius: 15px;
}

.wkeu-style-square .wkeu-main-btn {
    border-radius: 0;
}

.wkeu-main-btn:hover {
    transform: scale(1.1);
}

/* Contenedor de agentes */
.wkeu-agents-container {
    display: none;
    position: absolute;
    bottom: 70px;
    flex-direction: column;
    gap: 10px;
    width: 220px;
}

.wkeu-pos-right .wkeu-agents-container {
    right: 0;
}

.wkeu-pos-left .wkeu-agents-container {
    left: 0;
}

.wkeu-floating-button.active .wkeu-agents-container {
    display: flex;
}

/* Botones de agentes */
.wkeu-agent-btn {
    display: flex;
    align-items: center;
    background: white;
    padding: 10px 15px;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.wkeu-agent-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.wkeu-pos-left .wkeu-agent-btn:hover {
    transform: translateX(-5px);
}

.wkeu-agent-btn img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.wkeu-agent-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #666;
}

.wkeu-agent-btn span {
    white-space: nowrap;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 480px) {
    .wkeu-agents-container {
        width: 180px;
    }
    
    .wkeu-agent-btn {
        padding: 8px 12px;
    }
}

/* Estilo para cuando hay un solo agente */
.wkeu-single-agent .wkeu-agents-container {
    display: none !important;
}

.wkeu-single-agent .wkeu-main-btn {
    cursor: pointer;
    text-decoration: none;
}

/* Mostrar el contenedor al hacer hover solo para m¨²ltiples agentes */
.wkeu-floating-button:not(.wkeu-single-agent):hover .wkeu-agents-container,
.wkeu-floating-button:not(.wkeu-single-agent).active .wkeu-agents-container {
    display: flex !important;
}