.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.widget-trigger {
    background: #25D366;
    color: white;
    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);
}

.widget-trigger i {
    font-size: 35px;
}

.widget-content {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.widget-content.hidden {
    display: none;
}

.widget-header {
    background: #075E54;
    color: white;
    padding: 15px;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
}

.widget-header img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.close-widget {
    margin-left: auto;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.widget-body {
    padding: 15px;
}

.message {
    background: #DCF8C6;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    white-space: pre-line;
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.button-container button {
    background: #25D366;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: left;
}

.button-container button:hover {
    background: #128C7E;
}