
/* Material-esque styling for review cards & tables */
.review-layout { margin: 1.5rem 0; font-family: Roboto, Helvetica, Arial, sans-serif; }
.review-layout .card { background: #fff; border-radius: 6px; box-shadow: 0 2px 6px rgba(0,0,0,0.12); padding: 1.25rem; margin-bottom: 2rem; }

/* Tables */
.material-table { width: 100%; border-collapse: collapse; border-radius: 4px; overflow: hidden; border: 3px solid #a0a0a0; }
.material-table thead { background: #f5f5f5; }
.material-table th { text-align: left; font-weight: 600; color: #424242; padding: 0.75rem 1rem; font-size: 0.9rem; }
.material-table td { padding: 0.75rem 1rem; border-bottom: 1px solid #e0e0e0; font-size: 0.9rem; }
.material-table tr:last-child td { border-bottom: none; }
.material-table tbody tr:nth-child(even) { background: #fafafa; }
.material-table tbody tr:hover { background: #eceff1; }

/* Ratings list */
.ratings ul { list-style: none; margin: 0; padding: 0; }
.ratings li { padding: 0.4rem 0; display: flex; justify-content: space-between; }

/* Accordion */
.specs details[open] > summary::after { content: "▲"; }
.specs summary { cursor: pointer; font-weight: 500; outline: none; }
.specs summary::after { content: "▼"; float: right; }

.rating-chip { display:inline-block; background:#6200ea; color:#fff; border-radius:16px; padding:2px 10px; font-size:0.85rem; }
