.chat-button-left {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #1dd82da4; /* Tailwind blue-700 */
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    font-weight: bold;
    text-decoration: none;
    z-index: 9999;
    transition: background 0.3s ease;
}

.chat-box {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    overflow: hidden;
}

.chat-header {
    background: #52e752;
    color: white;
    padding: 10px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.chat-body {
    padding: 15px;
}

.chat-body textarea {
    width: 100%;
    padding: 8px;
    margin-top: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: none;
}

.chat-send {
    margin-top: 10px;
    background: #1D4ED8;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

.hidden {
    display: none;
}