.ccp-container {
  display: flex;
  margin: 2rem auto;
  overflow: hidden;
}
.ccp-sidebar {
  background: #fff;
  border-radius: 16px;
}

.ccp-cat {
  font-weight: 500;
  font-size: 1rem;
  color: #0f295a;
  cursor: pointer;
  transition: background-color 0.3s;
padding: 15px 0px 15px 15px;
font-weight: 500;

}

.ccp-cat.active {
  background-color: #cf3b3b; /* màu đỏ */
  color: white;
}

.ccp-cat.active:first-child, .ccp-cat:hover:first-child{
border-top-left-radius: 16px !important;
border-top-right-radius: 16px !important;
}

.ccp-cat.active:last-child, .ccp-cat:hover:last-child{
border-bottom-left-radius: 16px !important;
border-bottom-right-radius: 16px !important;
}

.ccp-cat:hover {
background-color: #cf3b3b;
color: white;
}
.ccp-content {
  padding: 1rem;
}
.ccp-posts {
  list-style: none;
  padding-left: 1rem;
}
.ccp-posts li {
  margin-bottom: 8px;
}


.accordion-button {
	cursor: pointer;
	width: 100%;
	text-align: left;
	border: none;
	outline: none;
	transition: background-color 0.3s ease;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background:#fff;
	font-family: 'Time News Roman';
	font-size: 1.25rem;
	color: #0F295A;
	padding: 26px 40px;
	margin-bottom: 1rem;
	border-radius: 1rem;
}


.accordion-button:hover {
  background-color: #f1f1f1;
}

.accordion-arrow {
  transition: transform 0.3s ease;
  font-size: 1rem;
  margin-left: 10px;
}

.accordion-content {
  display: none;
  background: #fff;
  padding: 0 16px;
  margin-bottom: 1rem;
  border-radius: 1rem;
  color: #0F295A;
  text-align: justify;
}

.accordion-content.open {
  display: block;
  padding: 35px;
}

.accordion-button.open .accordion-arrow {
  transform: rotate(90deg);
}