/* WA Button/Agent Styles */

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.whatsapp-agent-list {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    z-index: 1000;
    min-width: 200px;
    padding: 10px 0;
    font-family: sans-serif;
}

.whatsapp-agent {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.whatsapp-agent:last-child {
    border-bottom: none;
}

.whatsapp-agent:hover {
    background: #f1f1f1;
}

.whatsapp-agent-list {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: #e5ddd5;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: none;
    flex-direction: column;
    z-index: 1000;
    min-width: 230px;
    padding: 5px 0;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
    border: 1px solid #cfd8dc;
}

.whatsapp-agent {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    transition: background-color 0.2s;
}

.whatsapp-agent:hover {
    background-color: #dcf8c6;
}

.whatsapp-agent:last-child {
    border-bottom: none;
}

.whatsapp-agent-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
    flex-shrink: 0;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-agent-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}