﻿#chatPopup {
    position: fixed;
    bottom: 10px;
    left: 10px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display:none;
    z-index:100;
}

#chatHeader {
    background: #007bff;
    color: white;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#chatContent {
    max-height: 200px;
    overflow-y: auto;
    padding: 10px;
}

#chatInput {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ccc;
}

#chatInput input {
    flex: 1;
    padding: 5px;
    margin-right: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#chatInput button {
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    background: #007bff;
    color: white;
    cursor: pointer;
}

#chatInput button:hover {
    background: #0056b3;
}

#openChat {
    position: fixed;
    bottom: 10px;
    left: 10px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    z-index:100;
}

#minimizeChat {
    border: 0;
    background: none;
    box-shadow: none;
    border-radius: 0px;
    color:white;
    font-weight:bold;
}

#openChat:hover {
    background: #0056b3;
}

