/* Style cho ảnh trong review */
.review-images-review-woo-wat img.review-image-review-woo-wat {
    cursor: pointer;
}

/* Style cho popup */
.image-popup-review-woo-wat {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 99999;
}

.image-popup-review-woo-wat img {
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close-image-popup-review-woo-wat {
   position: absolute;
    top: 15px;
    right: 25px;
    color: #f1f1f1;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    background: linear-gradient(270.5deg, #f79922 -.62%, #ff7a00 99.14%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.575rem;
    height: 1.575rem;
    border-radius: 50%;
}

.prev-btn-review-woo-wat, 
.next-btn-review-woo-wat {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 9999;
    margin: 0 auto;
    min-height: auto;
    padding: 0 10px;
    font-weight: 300;
}

.prev-btn-review-woo-wat {
    left: 30px;
}

.next-btn-review-woo-wat {
    right: 30px;
}

.prev-btn-review-woo-wat:hover, 
.next-btn-review-woo-wat:hover {
    background: rgba(0, 0, 0, 0.8);
}