/* Breadcrumb */
.breadcrumb {
    background: #f8f8f8;
    padding: 10px 0;
}

.breadcrumb ul {
    display: block;
    white-space: normal;
}

.breadcrumb ul li{
    display: inline;
}

.breadcrumb ul li a{
    color: #9f9f9f;
}

.breadcrumb ul li a:hover{
    color: var(--primary-color);
}

.breadcrumb ul li:not(:last-child) {
    position: relative;
    padding-right: 15px;
}

.breadcrumb ul li:not(:last-child)::before{
    content: '/';
    color: #9f9f9f;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 4px;
}
/* End breadcrumb  */

.tab-content {
    position: relative;
}

.tab-pane {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.tab-pane.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.noi-dung h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.noi-dung h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.noi-dung p {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.noi-dung ul,
.noi-dung ol {
    margin-bottom: 15px;
    margin-left: 30px;
}

.noi-dung ul li {
    list-style: disc;
    margin-bottom: 10px;
    font-size: 16px;
}

.noi-dung ol li {
    list-style: decimal;
    margin-bottom: 10px;
    font-size: 16px;
}

blockquote {
    font-style: italic;
    padding: 5px 10px 5px 20px;
    border-left: 5px solid var(--fifth-color);
    background: #f6f6f6;
    border-radius: 10px;
    font-size: 20px;
    margin-bottom: 15px;
}

blockquote p,
blockquote h2,
blockquote h3 {
    margin-bottom: 0 !important;
}

.noi-dung table tr td {
    padding: 10px;
}

/* pagination  */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin-top: 20px;
    gap: 6px;
}

.pagination .page-item {
    display: inline-block;
}

.pagination .page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
}

.pagination .page-link:hover {
    background: #be7374;
    color: #fff;
    border-color: #be7374;
}

.pagination .page-item.active .page-link {
    background: #be7374;
    color: #fff;
    border-color: #be7374;
    pointer-events: none;
}

.pagination .page-item.disabled .page-link {
    background: #f5f5f5;
    color: #aaa;
    border-color: #ddd;
    pointer-events: none;
}


@media (max-width: 992px) {
    .noi-dung table tr td {
        width: 100% !important;
        display: block;
    }

    .noi-dung h2 {
        font-size: 22px;
    }

    .noi-dung h3 {
        font-size: 18px;
    }

    .noi-dung table tr td {
        padding: 0;
        margin-bottom: 15px;
    }
}
