﻿/* Style for chat icon */
.chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
    background-color: #007bff;
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Style for chat box */
.chat-box {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    max-height: 400px;
    background-color: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hidden {
    display: none;
}

.chat-header {
    background-color: #007bff;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.chat-body {
    flex-grow: 1;
    padding: 10px;
    overflow-y: auto;
    background-color: white;
}

.chat-footer {
    display: flex;
    border-top: 1px solid #ddd;
}

    .chat-footer input {
        flex-grow: 1;
        padding: 10px;
        border: none;
        outline: none;
    }

    .chat-footer button {
        padding: 10px;
        background-color: #007bff;
        color: white;
        border: none;
        cursor: pointer;
    }


/* Chat Icon */
/*.chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    background: #0078d7;
    color: white;
    padding: 10px;
    border-radius: 50%;
    text-align: center;
}*/

/* Chat Box */
/*.chat-box {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    max-height: 400px;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.chat-header {
    background-color: #0078d7;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-messages {
    padding: 10px;
    overflow-y: auto;
    max-height: 300px;
    font-size: 14px;
}

.chat-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ccc;
}

    .chat-input input[type="text"] {
        flex: 1;
        margin-right: 5px;
        padding: 5px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    .chat-input button {
        background-color: #0078d7;
        color: white;
        border: none;
        border-radius: 4px;
        padding: 5px 10px;
        cursor: pointer;
    }*/

