@import url('//fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Общий контейнер чата */
#ai-chat-button {
	font-family: "Montserrat", serif;
    position: fixed;
    cursor: pointer;
    text-align: center !important;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    padding: 9px !important;
    bottom: 15px;
    right: 10px;
    width: 170px;
    height: 40px;
    background: #97d79c !important;
    border: 0;
    border-radius: 3px;
    margin: 0 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 1000;
}

.ai-chat {
    position: fixed;
    bottom: 15px;
    right: 10px;
    width: 350px;
    height: 450px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 0px !important;
    margin: 0 !important;
	opacity: 0;

  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;

}
@media (max-width: 600px) {
	.ai-chat {
		right: 0;
        left: 0;
        width: auto;
        margin: 0 10px !important;
	}
}


.ai-chat a:hover {
    color: #9d8162;
}

/* Заголовок чата */
.ai-chat-header {
	background: #97d79c;
    color: #fff;
    padding: 5px;
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Сообщения */
.ai-chat-messages {
    padding: 10px;
    height: 200px;
    overflow-y: auto;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    flex-grow: 1;
}

/* Сообщение AI */
.chat-message, .chat-message.ai {
    background: #fff;
    padding: 0px;
    margin-bottom: 10px;
    border-radius: 3px;
    font-size: 13px;

}

/* Сообщение пользователя */
.chat-message.user, .chat-message:nth-child(odd) {
    background: #f1f1f1;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 3px;
    font-size: 13px;
}

/* Поле ввода */
.ai-chat-input {
	width: 100%;
    border: 1px solid #ddd;
    padding: 4px;
    margin: 0px;
    border-radius: 3px;
    box-sizing: border-box;
    font-size: 14px;
}

/* Кнопка отправки */
.ai-chat-send {
    width: 100%;
    background: #97d79c;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border-radius: 3px;
    margin: 5px 0 9px 0;
}

.ai-chat-send:hover {
    background: #83d78a;
}

/* Скроллбар */
.ai-chat-messages::-webkit-scrollbar {
    width: 6px;
}

.ai-chat-messages::-webkit-scrollbar-thumb {
    background-color: #aaa;
    border-radius: 3px;
}

.ai-chat-messages::-webkit-scrollbar-thumb:hover {
    background-color: #888;
}
#ai-chat-userarea {
    text-align: center;
    padding: 13px 10px 0px 10px;
    font-size: 13px;
}
#ai-chat-close {
	float: right;
    cursor: pointer;
	opacity: 0.7;
}
#ai-chat-close:hover {
	opacity: 1;
}