/* CSS để cắt gọn hashtag */
.news-tag-link {
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    padding: 1px 6px !important;
    font-size: 10px !important;
    border-radius: 20px !important;
}

/* Hiển thị hashtag trên cùng một dòng */
.news-tag {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow: hidden;
    max-width: 100%;
}

/* Giảm khoảng cách giữa các hashtag */
.news-tag-item {
    margin-right: 3px;
}

/* Hiệu ứng hover đẹp hơn */
.news-tag-link:hover {
    background-color: #FD8901 !important;
    color: white !important;
    border-color: #FD8901 !important;
    transition: all 0.2s ease;
}

/* Đảm bảo hiển thị đẹp trên mobile */
@media (max-width: 767px) {
    .news-tag-link {
        max-width: 80px;
    }
}
