.fwb-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.fwb-button {
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.fwb-button img {
    width: 30px;
    height: 30px;
}

.fwb-contacts {
    display: none;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 250px;
    padding: 15px;
}

.fwb-container.active .fwb-contacts {
    display: block;
}

.fwb-contact {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.fwb-contact:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.fwb-contact img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.fwb-photo-offline {
    filter: grayscale(100%);
}

.fwb-info h3 {
    margin: 0;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
}

.fwb-info p {
    margin: 5px 0;
    color: #666;
    font-size: 14px;
}

.fwb-info a {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
}

.fwb-info a:hover {
    background: #128C7E;
}

/* Styling untuk indikator status */
.fwb-status {
    font-size: 12px;
    margin-left: 8px;
}

.fwb-status-online {
    color: #25D366;
}

.fwb-status-offline {
    color: #ccc;
}