
/* Chat container */
.chat-container {
    position: fixed;
    bottom: 15px;
    right: 60px;
    z-index: 1000;
}

/* Chat button */
.chat-btn {
    background-color: #0ea2bd;
    height: 40px;
    width: 40px;
    border: none;
    color: white;
    font-size: 20px;
    padding: 0px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Chat window styles */
.chat-window {
    display: none;
    position: fixed;
    bottom: 70px;
    right: 20px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.chat-header {
    background-color: #0ea2bd;
    color: white;
    padding: 10px;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.chat-content {
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.messages {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 10px;
}

.chat-input {
    width: 100%;
    padding: 0px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.chat-input:focus {
    outline: none;
    border-color: #4CAF50;
}