/* product-poll.css */
.pp-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.pp-table th,
.pp-table td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: center;
}

.pp-table th {
    background-color: #f5f5f5;
}

.pp-name img {
    max-width: 100px;
    display: block;
    margin: 0 auto;
}

.pp-name .pp-product-name {
    text-align: center;
    margin-top: 5px;
    font-weight: bold;
}

/* Voting stars */
.pp-stars {
    cursor: pointer;
    display: inline-block;
}
.pp-star {
    font-size: 20px;
    color: #ccc;
    padding: 2px;
}
.pp-star.filled {
    color: gold;
}
.pp-star.hover {
    color: darkorange;
}
