/* =====================================================
   ULLA – Chatbot Design
   Version: 1.0
   Autor: Martin Gensert
   ===================================================== */


/* =====================================================
   Chatfenster
   ===================================================== */

#se-chat-panel {
    width: 700px !important;
    height: 900px !important;
    max-width: 95vw !important;
    max-height: 90vh !important;
}


/* =====================================================
   Kopfbereich
   ===================================================== */

#se-chat-header {
    min-height: 70px !important;
    padding: 15px !important;
}


/* =====================================================
   Nachrichtenbereich
   ===================================================== */

#se-chat-messages {
    padding: 20px !important;
    font-size: 18px !important;
    line-height: 1.7 !important;
}


/* gesamter Nachrichtentext */

#se-chat-messages * {
    font-size: 18px !important;
    line-height: 1.7 !important;
}


/* =====================================================
   Eingabebereich
   ===================================================== */

#se-chat-input-area {
    padding: 12px !important;
}


/* Eingabefeld */

#se-chat-input {
    font-size: 18px !important;
    min-height: 50px !important;
    padding: 10px !important;
}


/* =====================================================
   Senden-Button
   ===================================================== */

#se-chat-send {
    width: 52px !important;
    height: 52px !important;
}


/* =====================================================
   Fußbereich
   ===================================================== */

#se-chat-footer {
    font-size: 16px !important;
}


/* =====================================================
   Responsive Darstellung
   ===================================================== */

@media (max-width: 768px) {

    #se-chat-panel {
        width: 95vw !important;
        height: 90vh !important;
    }

}