.chatbot-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    font-family: 'Segoe UI', sans-serif;
}

.chatbot-title {
    color: #2176ae;
    margin: 0;
    font-size: 24px;
}

.chatbot-subtitle {
    color: #444;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}

#st-chatbot-container {
    width: 100%;
    max-width: 850px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 18px #0001;
    padding: 30px;
    min-height: 350px;
}

#st-messages {
    min-height: 160px;
    margin-bottom: 18px;
    max-height: 400px;
    overflow-y: auto;
}

.user-msg, .bot-msg {
    margin: 10px 0;
    padding: 12px 16px;
    border-radius: 12px;
    line-height: 1.4;
}

.user-msg {
    background-color: #d7ebff;
    text-align: right;
    color: #003b6f;
}

.bot-msg {
    background-color: #f6f9fb;
    text-align: left;
    color: #333;
}

.chatbot-input-area {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
/*ST INPUT */
#st-file-input {
    flex: 1 1 200px;
    padding: 10px 16px;
    border: 2px solid #4CAF50;
    border-radius: 8px;
    background-color: #e4e7ef;
    font-size: 16px;
    color: #333;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
#st-img-input {
    flex:1 1 200px;
    padding: 10px 16px;
    border: 2px solid #4CAF50;
    border-radius: 8px;
    background-color: #e4e7ef;
    font-size: 16px;
    color: #333;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
#st-user-input {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;
}

.chatbot-btn {
    background-color: #2176ae;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.chatbot-btn:hover {
    background-color: #155b8c;
}

.reset-btn {
    align-self: flex-end;
    margin-bottom: 15px;
}

.chatbot-footer {
    color: #aaa;
    margin-top: 18px;
}


/*  Insertar archivos*/





.bot-msg h1,
.bot-msg h2,
.bot-msg h3 {
    color: #1e293b;
    margin: 10px 0 5px;
    font-weight: 600;
}

.bot-msg p {
    margin: 6px 0;
    line-height: 1.5;
}

.bot-msg ul,
.bot-msg ol {
    padding-left: 20px;
    margin: 8px 0;
}

.bot-msg li {
    margin-bottom: 6px;
}

.bot-msg strong {
    color: #0f172a;
    font-weight: bold;
}

.bot-msg em {
    color: #475569;
    font-style: italic;
}
