.comment-box {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 10px;
}

.comment {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}

.comment:last-child {
    border-bottom: none;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.rating {
    font-weight: bold;
}

.comment-body {
    margin-top: 5px;
}

.comment-footer {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}