/* Radio Terms Generator – frontend styles for generated entries */

/* Tabela parametrów / porównań */
.radterm-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0 1.8em;
  font-size: 0.95em;
  line-height: 1.5;
}
.radterm-table th,
.radterm-table td {
  border: 1px solid #d0d0d0;
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
}
.radterm-table thead th {
  background: #2c3e50;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.radterm-table tbody tr:nth-child(even) {
  background: #f8f9fa;
}
.radterm-table tbody tr:hover {
  background: #eef2f5;
}

/* Responsywność tabeli */
@media (max-width: 600px) {
  .radterm-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .radterm-table th,
  .radterm-table td {
    white-space: nowrap;
    padding: 8px 10px;
    font-size: 0.88em;
  }
}

/* CTA box na frontendzie */
.radterm-cta-box {
  margin-top: 2em;
  padding: 1em 1.5em;
  border-left: 4px solid #e67e22;
  background: #fef6ee;
}
.radterm-cta-link {
  font-weight: 700;
  color: #c0392b;
  text-decoration: underline;
}
