/* Кнопка открытия чата */
#wc-gemini-chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 999999;
}

/* Окно чата */
#wc-gemini-chat-window {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 350px;
    height: 450px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    z-index: 999999;
    overflow: hidden;
}

/* Шапка чата */
.wc-chat-header {
    background-color: #2563eb;
    color: white;
    padding: 15px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}

#wc-gemini-close-chat {
    cursor: pointer;
    font-size: 18px;
}

/* Область сообщений */
.wc-chat-messages {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
    background-color: #f8fafc;
}

.wc-message {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 8px;
    max-width: 80%;
    font-size: 14px;
}

.wc-message.bot { background-color: #e2e8f0; align-self: flex-start; }
.wc-message.user { background-color: #dbeafe; align-self: flex-end; margin-left: auto; }

/* Поле ввода */
.wc-chat-input-area {
    display: flex;
    padding: 10px;
    border-top: 1px solid #e2e8f0;
}

#wc-gemini-chat-input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
}

#wc-gemini-chat-send {
    background-color: #2563eb;
    color: white;
    border: none;
    padding: 10px 15px;
    margin-left: 10px;
    border-radius: 5px;
    cursor: pointer;
}