/*
  Arquivo: ag-kanban-height-more-room.css
  Origem: public/index.html
  Bloco original: <style id="kanban-height-more-room-patch">
  Função: aumenta a área vertical útil do Kanban para exibir mais cartões simultaneamente.
  Observação: extração passiva; não altera lógica JS, drag/drop, clique de cards ou integração Kanban → Histórico.
*/

/* ===== kanban-height-more-room-patch ===== */
/* Kanban — área vertical maior, sem aumentar largura das listas.
   Objetivo: mostrar mais cartões/informações simultaneamente no Trello interno. */
#homeView.active .kanban-wrap,
.home-view.active .kanban-wrap{
  height:clamp(540px, calc(100vh - 220px), 820px) !important;
  min-height:min(540px, calc(100vh - 190px)) !important;
}

/* Mantém as colunas usando toda a altura nova, sem mexer na largura. */
#homeView.active .kanban-board,
.home-view.active .kanban-board,
#homeView.active .kanban-col,
.home-view.active .kanban-col{
  height:100% !important;
}

/* Em telas um pouco menores, ainda ganha altura, mas evita invadir o rodapé da janela. */
@media (max-height: 760px){
  #homeView.active .kanban-wrap,
  .home-view.active .kanban-wrap{
    height:clamp(480px, calc(100vh - 190px), 650px) !important;
    min-height:min(480px, calc(100vh - 170px)) !important;
  }
}
