/*
Plugin Name: Right Chat Plugin
File Name: right-chat-plugin.css
wp-content\plugins\right-chat-plugin\right-chat-plugin.css
Description: Стили для чата в правом сайдбаре с интеграцией LLM моделей через API.
Version: 1.2
Author: Dmitry Kozlov
*/

.right-chat {
    padding: 0px;
    background: #ddd;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

#chat-messages {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 10px;
    padding: 10px;
    border: 1.5px solid #ccc;
    border-radius: 5px;
    background: url('fon.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    min-height: 0;
    line-height: 1.6;
}

.chat-message {
    margin: 5px 0;
    padding: 8px;
    border-radius: 5px;
    max-width: 90%;
    word-wrap: break-word;
    line-height: 1.5;
}

.user-message {
    background: rgba(225, 245, 254, 0.9);
    align-self: flex-end;
}

.assistant-message {
    background: rgba(241, 241, 241, 0.9);
    align-self: flex-start;
}

.chat-input-container {
    display: flex;
    gap: 5px;
    flex-shrink: 0;
    align-items: center;
}

#chat-input {
    flex: 1;
    padding: 5px;
    border: 1.5px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
    font-size: 14px;
}

.chat-send-btn {
    padding: 5px 10px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.chat-send-btn:hover {
    background: #005d88;
}

/* Стили для форматированного текста из Markdown */
#chat-messages h1 {
    font-size: 1.5em;
    margin: 10px 0;
    color: #333;
}

#chat-messages h2 {
    font-size: 1.3em;
    margin: 8px 0;
    color: #333;
}

#chat-messages h3 {
    font-size: 1.1em;
    margin: 6px 0;
    color: #333;
}

#chat-messages strong {
    font-weight: bold;
}

#chat-messages em {
    font-style: italic;
}

#chat-messages ul {
    list-style-type: disc;
    margin: 10px 0;
    padding-left: 20px;
}

#chat-messages li {
    margin-bottom: 5px;
}

#chat-messages table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
}

#chat-messages th,
#chat-messages td {
    border: 1.5px solid #ccc;
    padding: 8px;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

#chat-messages th {
    background-color: #e0e0e0;
    font-weight: bold;
}

/* Совместимость с общей структурой сайта */
.sidebar-right {
    box-sizing: border-box;
}

/* Адаптивность */
@media (max-width: 768px) {
    .right-chat {
        padding: 5px;
    }

    #chat-messages {
        padding: 5px;
    }

    .chat-message {
        max-width: 90%;
        padding: 6px;
    }

    #chat-input {
        font-size: 12px;
    }

    .chat-send-btn {
        font-size: 12px;
        padding: 4px 8px;
    }
}

@media (max-width: 480px) {
    .chat-input-container {
        flex-direction: column;
    }

    #chat-input,
    .chat-send-btn {
        width: 100%;
        margin: 2px 0;
    }
}