.post-list .grid-item, .post-list .post {
	width:100%;
}

div .breadcrumb-area {
  max-width: 1000px; 
  margin: 5px 10px 0;
}

div .page-title.hu-pad.group{
	display:none;
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-size: 28px;
  min-width: 28px;
  text-align: center;
}

#chatbot-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 190px;
  height: 60px;
  background: linear-gradient(135deg, #0078D4, #00B4DB);
  border-radius: 30px;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

#beta-badge {
  position: absolute;
  top: -12px;
  right: -6px;
  background-color: #e03e2f;
  color: white;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  font-family: "Segoe UI", sans-serif;
  z-index: 1001;
  pointer-events: none;
}

#chatbot-title {
  display: block;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
}

#chatbot-container {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: min(400px, 90vw);
  height: min(600px, 85vh);
  max-width: 90vw;
  max-height: 85vh;
  display: none;
  z-index: 10000;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  animation: fadeInUp 0.3s ease;
  transition: all 0.3s ease;
}

#chatbot-container.expanded {
  width: min(720px, 95vw);
  height: calc(100vh - 120px);
  max-height: calc(100vh - 120px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#chatbot-container iframe {
	background: #fff;
  z-index: 10001;
  width: 100%;
  height: calc(100% - 40px);
  border: none;
}

#chat-header {
  background: linear-gradient(135deg, #0078D4, #00B4DB);
  color: white;
  padding: 6px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}

#chat-title {
  text-align: center;
  font-weight: bold;
  font-size: 17px;
  flex-grow: 1;
  margin: 0 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 600px) {
  #chatbot-icon {
    width: 150px;
    height: 50px;
    font-size: 24px;
    bottom: 15px;
    right: 15px;
  }
  #chatbot-title {
    font-size: 14px;
  }
  #chatbot-container {
    width: 95vw;
    height: 70vh;
    bottom: 70px;
    right: 10px;
    border-radius: 12px;
  }
  #chatbot-container.expanded {
    width: 100vw;
    height: 90vh;
    right: 0;
    bottom: 0;
    border-radius: 0;
  }
  #chat-title {
    font-size: 15px;
  }
}