body {
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem !important;
}
.text-title-page {
    font-size: 28px;
    font-weight: 700;
    color: #041F4A;
    margin: 20px 0px;
}
.btn-link {
    color: #000 ;
    font-weight: bold;
    text-decoration: none;
    padding-left: 0;
}
.btn-link .text-collapse {
    text-decoration: none;
    font-size: 0.875rem
}

.btn-link:hover .text-collapse {
    color: #007bff !important; /* xanh khi hover */
    text-decoration: none !important;
}
.btn-link:focus ,
.btn-link:active ,
.btn-link:focus-visible,
.btn-link:active {
    box-shadow: none !important;
    outline: none !important;
    text-decoration: none;
}
.chevron {
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid #007bff;
    border-bottom: 2px solid #007bff;
    transform: rotate(-45deg); /* mặc định là mũi tên sang phải */
    transition: transform 0.3s ease;
    margin-left: 8px;
}
/* Khi collapse mở (button KHÔNG còn class .collapsed) => xoay xuống */
button[aria-expanded="true"] .chevron {
    transform: rotate(45deg); /* mũi tên xuống */
}
button[aria-expanded="true"] {
    color: #007bff !important;
}
.bg-lightblue {
    background: #E7F1FF;
}
.card {

    border-top: 1px solid #DEEBFF;
    border-bottom: 1px solid #DEEBFF;
    border-left: none;
    border-right: none;
    border-radius: 6px !important;
    overflow: hidden;
    border-bottom: none;
}
.card-header {
    border-bottom: none; /* bỏ border chồng nhau */
    background-color: white;
    padding-left: 0;
}
#accordion .card:last-child {
    margin-bottom: 0; /* thẻ cuối cùng không cần margin */
    border-bottom: 1px solid #DEEBFF;
}
.block-card {
    margin-bottom: 60px;
}
.btn-link .text-collapse {
    white-space: normal;   /* Cho phép xuống dòng */
    flex: 1;               /* Chiếm hết khoảng trống còn lại */
}
@media screen and (max-width: 575px){
    #accordion .card-header {
        padding-right: 0px;
    }
    .block-card {
        margin-bottom: 0px;
    }

}