﻿/* Div comment */
#commentContainer {
    height: 300px;
    overflow-y: auto;
    border: 1px solid #ccc;
    /*padding: 10px;*/
    background-color: #f9f9f9;
    border-radius: 5px;
    padding-left: 15px; /* Thêm khoảng cách trái */
}

/* Div bên phải */
.right-container {
    height: 300px;
}

/* 2 box chia đôi */
.top-box, .bottom-box {
    background: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
}

/* Top và Bottom chia đều chiều cao */
.top-box {
    margin-bottom: 10px;
    flex: 1;
}

.bottom-box {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

#productCount {
    font-size: 16px;
    font-weight: bold;
}

/* Nếu thích đẹp hơn: thêm transition */
#commentContainer, .right-container {
    transition: all 0.3s ease;
}


/* CSS cho mỗi sản phẩm */
#productCountBox {
    display: flex;
    flex-direction: column; /* Để các item hiển thị theo cột */
    padding: 10px;
}

.product-count-item {
    margin-bottom: 10px; /* Thêm khoảng cách giữa các sản phẩm */
    font-size: 14px;
    color: #333;
}


 /*Đếm người có comment nhiều nhất*/
.top-commenter-box {
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
    background-color: #f8f8f8;
    padding: 10px;
    border-radius: 5px;
    text-align: left;
}
