.tab-labels {
	display: flex;
	gap: 20px;
	border-bottom: 1px solid #ccc;
	margin-bottom: 10px;
}
.tab-labels label {
	padding: 10px 20px;
	cursor: pointer;
	font-weight: bold;
	color: #2c2f38;
	border-radius: 999px;
	transition: 0.3s;
}
.tab-labels label:hover {
	background: #f0f0f0;
}
input[name="tab"] {
	display: none;
}
input[name="tab"]:checked + label {
	color: #1f2f52;
	border: 2px solid #1f2f52;
	padding: 8px 18px;
}
.tab-content {
	display: none;
}
#tab1:checked ~ .content1,
#tab2:checked ~ .content2,
#tab3:checked ~ .content3,
#tab4:checked ~ .content4 {
	display: block;
}
.bang-chat {
	margin-top: 10px;
}

/* Thiết lập container chính */
.ai-tabs-container {
	max-width: 100%;
	margin: 20px auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Ẩn các radio buttons */
.ai-tabs-container input[type="radio"] {
	display: none;
}

/* Style cho tab-labels container */
.tab-labels {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 2px solid #222;
	margin-bottom: 20px;
	border-radius: 8px 8px 0 0;
	padding: 5px 5px 0 5px;
}

/* Style cho tất cả các label */
.tab-labels label {
	padding: 12px 20px;
	margin-right: 4px;
	cursor: pointer;
	background-color: #f0f0f0;
	color: #555;
	border: 1px solid #ddd;
	border-bottom: none;
	border-radius: 6px 6px 0 0;
	transition: all 0.3s ease;
	font-weight: 500;
	position: relative;
	overflow: hidden;
	box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
	text-align: center;
	min-width: 120px;
}

/* Hiệu ứng khi hover */
.tab-labels label:hover {
	background-color: #e5e5e5;
	color: #333;
	transform: translateY(-2px);
}

/* Style cho label khi tab tương ứng được chọn */
#tab1:checked ~ .tab-labels label[for="tab1"],
#tab2:checked ~ .tab-labels label[for="tab2"],
#tab3:checked ~ .tab-labels label[for="tab3"],
#tab4:checked ~ .tab-labels label[for="tab4"] {
	background-color: #222;
	color: #fff;
	border-color: #222;
	transform: translateY(-3px);
	box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
	z-index: 1;
}

/* Thêm hiệu ứng gạch dưới cho tab được chọn */
#tab1:checked ~ .tab-labels label[for="tab1"]::after,
#tab2:checked ~ .tab-labels label[for="tab2"]::after,
#tab3:checked ~ .tab-labels label[for="tab3"]::after,
#tab4:checked ~ .tab-labels label[for="tab4"]::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #fff;
	animation: slideIn 0.3s ease forwards;
}

/* Animation cho đường gạch dưới */
@keyframes slideIn {
	from {
		transform: translateX(-100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

/* Ẩn tất cả các nội dung tab ban đầu */
.tab-content {
	display: none;
	animation: fadeIn 0.5s ease forwards;

}

/* Animation cho nội dung tab */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Hiển thị nội dung tab khi được chọn */
#tab1:checked ~ .content1,
#tab2:checked ~ .content2,
#tab3:checked ~ .content3,
#tab4:checked ~ .content4 {
	display: block;
}

/* Style cho phần chat */
.bang-chat {
	border-radius: 6px;
	background-color: #fcfcfc;
	transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.tab-labels label {
		padding: 10px 15px;
		min-width: 150px;
		font-size: 14px;
	}
}

@media (max-width: 576px) {
}
.wpcf7-response-output{
	display:none;
}

.custom.container {
	margin: 40px auto;
	padding: 20px;
}
.custom.container header {
	text-align: center;
	margin-bottom: 50px;
}
.custom.container h1 {
	font-size: 2.5rem;
	color: #000;
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 10px;
}
.custom.container .faq-container {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 20px;
}
.custom.container .faq-item {
	margin-bottom: 20px;
	border-bottom: 1px solid #eee;
}
.custom.container .faq-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
}
.custom.container .faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	font-weight: 600;
	color: #000;
	padding: 10px;
	transition: all 0.3s ease;
	border-radius: 5px;
}
.custom.container .faq-question:hover {
	background-color: #f0f0f0;
}
.custom.container .faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.5s ease;
	opacity: 0;
	padding: 0 10px;
}
.custom.container .faq-answer.active {
	max-height: 500px;
	padding: 15px 10px;
	opacity: 1;
}
.custom.container .icon {
	transition: transform 0.4s ease;
}
.custom.container .icon.rotate {
	transform: rotate(45deg);
}
.custom.container footer {
	text-align: center;
	margin-top: 50px;
	color: #666;
}
.custom.container a {
	color: #000;
	text-decoration: none;
	border-bottom: 1px dotted #000;
}
.custom.container a:hover {
	border-bottom: 1px solid #000;
}

@media (max-width: 768px) {
	.custom.container {
		padding: 0px;
	}
	.custom.container .faq-container {
		background: #fff;
		border-radius: 10px;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
		padding: 10px;
	}
}
#comments {
	display:none;
}
.wpaicg-chat-shortcode{
	width:100% !important;
}

.seo-post-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.seo-post-item {
  display: flex;
  align-items: center;
}

.seo-post-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.seo-thumb {
  width: 36px;
  height: 36px;
  border-radius: 23%;
  object-fit: cover;
  margin-right: 12px;
}

.seo-post-title {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wpaicg_widget_right{
	display:none !important;
}

ul.wpaicg-chat-shortcode-messages{
	height:auto !important;
}
