﻿.product-name-link {
    font-weight: bold;
    color: #000;
    transition: color 0.3s ease;
    text-decoration: none;
}

    .product-name-link:hover {
        color: #b0b435 !important;
    }

.thumbnail-img img {
    transition: transform 0.3s ease;
}

.thumbnail-img a:hover img {
    transform: scale(1.05);
}

.ui-tooltip {
    background-color: #b0b435 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 6px 12px !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2) !important;
}

.ui-helper-hidden-accessible {
    display: none !important;
}
/* Tùy chỉnh màu nền cho Header của bảng */
.wishlist-thead {
    background-color: #b0b435;
    color: white;
}

/* Giới hạn kích thước ảnh sản phẩm */
.wishlist-img-thumb {
    max-width: 80px;
}

/* Label trạng thái kho hàng */
.badge-stock {
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: normal;
}

    .badge-stock.in-stock {
        background-color: #28a745;
    }

    .badge-stock.out-of-stock {
        background-color: #dc3545;
    }

/* Nút xóa sản phẩm - Thay thế hoàn toàn cho onmouseover/onmouseout */
.btn-remove-wishlist {
    color: black;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

    .btn-remove-wishlist:hover {
        color: red !important;
    }

/* Nút "Đi khám phá ngay" khi giỏ trống */
.btn-explore-now {
    background-color: #b0b435;
}