.chat-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    height: 400px;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none; /* Initially hidden */
    z-index: 1000;
    overflow: hidden;
}

.chat-popup-header {
    background-color: #007bff;
    color: #ffffff;
    padding: 10px;
    text-align: center;
    cursor: pointer;
}

.chat-popup-body {
    padding: 10px;
    height: calc(100% - 50px); /* Adjust height to account for header */
    overflow-y: auto;
}

.chat-popup-footer {
    padding: 10px;
    background-color: #f1f1f1;
    text-align: right;
}

.chat-popup-footer button {
    background-color: #007bff;
    color: #ffffff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.chat-popup-footer button:hover {
    background-color: #0056b3;
}