<!-- 🔥 CSS FIX PENTRU CHAT INLINE - ADAUGĂ ACEASTA SECȚIUNE 🔥 -->

/* Override pentru a elimina scroll-ul din chat */
body.ai-full-page-mode #ai-chat-container {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

body.ai-full-page-mode #ai-chat-messages {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    overflow-y: visible !important;
}

/* Asigură-te că #content nu are height fix */
body.ai-full-page-mode #content {
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
}

body.ai-full-page-mode #main {
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
}

body.ai-full-page-mode #ai-chat-disclaimer {
  display: none !important;
}

/* 📱 FIX FINAL – ascunde headerul pe mobil doar în pagina chat inline */
/* Ascunde header doar când Skel e pe narrower (mobil/tabletă) */
html.narrower body.ai-full-page-mode #header {
  display: none !important;
  height: 0 !important;
  overflow: hidden !important;
}
