.chat-button {
    position: fixed;
    bottom: 10px;
    right: 20px;
    background-color: #CC3366;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.chat-button:hover,
.chat-button:active,
.chat-button:focus {
    background-color: #1BA0E2;
}

.chat-button img {
    margin-right: 5px;
    width: 22px;
    height: 22px;
}

.chat-popup {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    border: 3px solid #f1f1f1;
    z-index: 9;
    background-color: white;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.form-container {
    padding: 20px;
}

.form-container textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0 10px 0;
    border: none;
    background: #f1f1f1;
    resize: none;
    min-height: 100px;
}

.form-container .btn {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom: 10px;
    opacity: 0.8;
}

.form-container .btn:hover {
    opacity: 1;
}

.form-container .cancel {
    background-color: red;
}
