.chung-chi-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.chung-chi-tabs-nav {
    flex: 0 0 220px; /* Sidebar bên trái rộng 220px */
}

.chung-chi-tabs-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.chung-chi-tabs-nav li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
    font-weight: 500;
    transition: background-color 0.3s;
}

.chung-chi-tabs-nav li:last-child a {
    border-bottom: none;
}

.chung-chi-tabs-nav li a:hover {
    background-color: #f0f0f0;
}

.chung-chi-tabs-nav li a.active {
    background-color: #192A3D; /* Màu xanh WordPress */
    color: #fff;
    font-weight: bold;
}

.chung-chi-tabs-content {
    flex: 1; /* Phần nội dung bên phải sẽ chiếm hết phần còn lại */
    min-width: 0; 
}

.tab-pane {
    display: none; /* Ẩn tất cả các tab content mặc định */
}

.tab-pane.active {
    display: block; /* Chỉ hiện tab content đang được chọn */
}
.chung-chi-details-table table, .chung-chi-details-table th, .chung-chi-details-table td {
  border-color: transparent;
}
.chung-chi-details-table th, .chung-chi-details-table td {
  padding: 5px 0 !important;
}
.hyg_title-ht-chung-chi {
  font-size: 1.5em;
  padding-bottom: 15px;
  border-bottom: solid 2px #d6d6d6;
}
@media (max-width: 690px) {
    .chung-chi-container {
      flex-direction: column;
      
    }
    .chung-chi-container .chung-chi-tabs-nav {
      flex: unset;
    }
}