<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#box_vlai {
    border-radius: 2px;
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    padding-bottom: 35px;
    float: left;
    width: 100%;
}

.pagination {
    float: right;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.pagination .btn_next_tab {
    background: transparent;
    aspect-ratio: 1 / 1;
    border: 1px solid #4c5bd4;
    color: #000000;
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 5px 0px #0000001a;
    margin: 0 5px;
    padding: 0;
}
.btn_next_tab svg {
    width: 18px;
    height: 18px;
}
.sl_vlai {
    color: #4c5bd4;
    font-weight: 500;
}
.pagination button:disabled {
    border: 1px solid #dee0e2;
    color: #dee0e2;
    cursor: unset;
    opacity: 1;
}

.pagination button:disabled svg {
    fill: #dee0e2;
}

#pagination-container .gachngang {
    border: none;
    color: rgba(76,91,212,.1);
    background: rgba(76,91,212,.1);
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 20px;
    height: 4px;
    border-radius: 16px;
    margin-right: 5px;
}

#pagination-container .gachngang:hover, 
#pagination-container .gachngang.active {
    color: #4c5bd4;
    font-weight: bold;
    background: #4c5bd4;
}

#pagination-container .gachngang:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

@media (max-width: 700px) {
    .main_box_vieclam {
        margin-bottom: 0 !important;
        width: 100%;
        padding: 0 0 20px;
        float: left;
    }
}

#box_vlai .overlay_loading_vlai {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

#box_vlai .main_box_vieclam {
    position: relative;
}
#box_vlai .overlay_loading_vlai .content_loading_vlai {
    border: 4px solid #ccc;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: loading_ai 0.8s linear infinite;
}
#box_vlai .boxlst_tabAI {
    transition: transform 0.3s ease;
    white-space: nowrap;
    will-change: transform;
    display: inline-block;
}
.boxlst_tabAI_wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    max-width: 120px;
}

@keyframes loading_ai {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}</pre></body></html>