.item-img img {
    object-fit: cover;
}

.home-category .home-category-icon img{
  padding: 0px;
}

.nav-bar-links > a:first-of-type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: #007bff; /* Màu xanh Bootstrap primary */
    color: #fff !important;
    padding: 10px 5px;
    border-radius: 0.5rem; /* Bo tròn kiểu Bootstrap pill */
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    text-decoration: none;
}

/* Icon trước chữ */
.nav-bar-links > a:first-of-type::before {
    content: "\f017"; /* Font Awesome clock */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
    opacity: 0.9;
}

/* Giữ hover đồng đều (chỉ hiệu ứng nhẹ, không đổi màu) */
.nav-bar-links > a:first-of-type:hover {
    background-color: #007bff;
    color: #fff;
    transform: none;
}