/* Estado minimizado del chat */
#chat-widget.minimized {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50%;
  bottom: 100px !important;	
  right: 20px !important;
  overflow: visible !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0; /* ocultar texto */
}

/* Ocultar todo excepto header cuando está minimizado */
#chat-widget.minimized > *:not(#chat-header) {
  display: none !important;
}

/* Ajustes en header cuando minimizado */
#chat-widget.minimized #chat-header {
  justify-content: center !important;
  padding: 0 !important;
}

/* Ocultar textos dentro del header excepto el botón minimizar */
#chat-widget.minimized #chat-header > :not(#minimize-chat) {
  display: none !important;
}
