/* Кнопка вызова чата в углу экрана */
#madina-chat-trigger {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #333333;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}
#madina-chat-trigger:hover { transform: scale(1.1); }

/* Основное окно чата */
#madina-chat-window {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 380px;
    height: 500px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    display: none; /* Изначально скрыто */
    flex-direction: column;
    overflow: hidden;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

/* Шапка чата (как на картинке) */
.madina-chat-header {
    background-color: #333333;
    color: #ffffff;
    padding: 15px;
    display: flex;
    align-items: center;
}
.madina-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #555;
    margin-right: 12px;
}
.madina-profile-info { flex-grow: 1; }
.madina-name { font-weight: bold; font-size: 15px; }
.madina-status { font-size: 12px; color: #b3b3b3; }

/* Область переписки */
.madina-chat-messages {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
    background-color: #f7f7f7;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Стили сообщений (бабблы) */
.madina-msg {
    max-width: 75%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
}
.madina-msg.client {
    background-color: #e2e2e2;
    color: #333333;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}
.madina-msg.bot {
    background-color: #5cb85c; /* Зеленый, как на твоем скриншоте */
    color: #ffffff;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

/* Нижняя панель ввода */
.madina-chat-input-area {
    display: flex;
    padding: 10px;
    background-color: #ffffff;
    border-top: 1px solid #eeeeee;
}
#madina-input-field {
    flex-grow: 1;
    border: 1px solid #cccccc;
    border-radius: 20px;
    padding: 8px 14px;
    outline: none;
    font-size: 14px;
}
#madina-send-btn {
    background: none;
    border: none;
    color: #5cb85c;
    font-weight: bold;
    margin-left: 10px;
    cursor: pointer;
    font-size: 14px;
}