/* ======================================================
   Rating Table
   bezahlte-meinungsumfragen.com
====================================================== */

.rating-table {
  width: 100%;
  max-width: 700px;
  margin: 1.5rem auto;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.rating-table th {
  padding: 0.9rem 1rem;
  background: #ff0a85;
  color: #fff;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.rating-table td {
  padding: 0.8rem 1rem;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}

.rating-table tr:last-child td {
  border-bottom: none;
}

.rating-table tr:nth-child(even) td {
  background: #fafafa;
}

.rating-table strong {
  color: #ff0a85;
  font-weight: 600;
}

.rating-table td:last-child {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Mobile */
@media (max-width: 767px) {

  .rating-table th,
  .rating-table td {
    display: block;
    width: 100%;
  }

  .rating-table tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
  }

  .rating-table th {
    border-radius: 10px 10px 0 0;
  }

  .rating-table td:last-child {
    border-bottom: none;
  }
}