.fa-dd34c92a-wrapper {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99999;
    font-family: Arial, sans-serif;
}

.fa-dd34c92a-trigger-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fa-dd34c92a-trigger-text {
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.fa-dd34c92a-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: transparent;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    padding: 0;
    transition: transform 0.2s;
}

.fa-dd34c92a-btn:hover {
    transform: scale(1.05);
}

.fa-dd34c92a-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.fa-dd34c92a-window {
    display: none;
    flex-direction: column;
    width: 350px;
    max-width: 90vw;
    height: 500px;
    max-height: 80vh;
    background: #e5ddd5;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    margin-bottom: 15px;
    overflow: hidden;
}

.fa-dd34c92a-header {
    background: #075E54;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.fa-dd34c92a-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.fa-dd34c92a-title {
    flex-grow: 1;
    font-weight: bold;
    font-size: 16px;
}

.fa-dd34c92a-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.fa-dd34c92a-body {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fa-dd34c92a-msg {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.4;
}

.agent-msg {
    background: white;
    align-self: flex-start;
    border-top-left-radius: 0;
}

.user-msg {
    background: #dcf8c6;
    align-self: flex-end;
    border-top-right-radius: 0;
}

.fa-dd34c92a-footer {
    background: #f0f0f0;
    padding: 10px;
}

.fa-dd34c92a-questions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fa-dd34c92a-qbtn {
    background: white;
    border: 1px solid #ccc;
    border-radius: 15px;
    padding: 8px 12px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
}

.fa-dd34c92a-qbtn:hover {
    background: #e0e0e0;
}
