
@media screen and (max-width: 767px) {
  div#preloader div {
    left: 50% !important;
}
}
.chat-message {
    background-color: #edddc0;
    padding: 5px;
    margin-top: 5px;
}
.chat-message-admin {
    padding: 5px;
    margin-top: 5px;
    background-color: #f8d3a5;
    text-align: right;
}
.chat-button {
    background-color: #a0761e; /* Updated color */
    color: white;
}

.chat-header {
    background-color: #a0761e; /* Updated color */
}

.send-button {
    background-color: #a0761e; /* Updated color */
}
.chat-support {
    position: fixed;
    bottom: 60px;
    right: 6px;
    z-index: 1000;
}

.chat-button {
    background-color: #a0761e; /* Updated color */
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.chat-popup {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 300px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.chat-header {
    background-color: #a0761e; /* Updated color */
    color: white;
    padding: 10px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-button {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.chat-body {
    padding: 10px;
    max-height: 400px;
    overflow-y: auto;
}

.messages {
    margin-bottom: 10px;
}

textarea {
    width: 100%;
    height: 60px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.send-button {
    background-color: #a0761e; /* Updated color */
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 5px;
    width: 100%;
}
.message-count-badge { 
    z-index: 1000;
    top: 0px;
    right: 0;
    background-color: #ff0000;
    color: white;
    font-size: 11px; 
    border-radius: 50%;
    display: flex;
    width: 20px;
    height: 20px;
    text-align: center;
    position: absolute;
    align-items: center;
    justify-content: center;
}