/* General Reset */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Chat Button */
.chat-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ffffff; /* White background */
    color: #d9a23e; /* Gold-like color for the text */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.chat-btn:hover {
    transform: scale(1.1);
}

.chat-btn .chat-icon img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* Chat Popup */
.chat-popup {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background-color: #ffffff; /* White background */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Moderate shadow */
    display: none;
    flex-direction: column;
    z-index: 1000;
}

.chat-popup.active {
    display: flex;
}

/* Chat Header */
.chat-header {
    background-color:  #2D8F83; /* Gold-like background for header */
    color: #ffffff; /* White text */
    padding: 10px 15px;
    border-radius: 8px 8px 0 0; /* Rounded corners for the top */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
}

.chat-header .close-btn {
    background: none;
    border: none;
    color: #ffffff; /* White for close button */
    font-size: 20px;
    cursor: pointer;
}

/* Chat Content */
.chat-content {
    padding: 10px 15px;
    overflow-y: auto;
    max-height: 150px;
    border-bottom: 1px solid #ddd;
    background-color: #fafafa; /* Light grey for chat background */
}

.chat-message {
    margin-bottom: 10px;
    font-size: 14px;
    color: #333; /* Dark text color for contrast */
}

/* Message Input */
#message-input {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 10px;
    font-size: 14px;
    background-color: #ffffff; /* White input background */
    color: #333; /* Dark text */
}

/* Send Button */
.send-btn {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 0 10px 10px 10px;
    background-color:  #2D8F83; /* Gold-like background */
    color: #ffffff; /* White text */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.send-btn:hover {
    background-color: #e0b050; /* Slightly lighter gold shade on hover */
}
