/* AtreMahdi AI SEO — Public styles (table beautification). */

.atremahdi-comparison-table,
.atremahdi-internal-link {
  font-family: inherit;
}

.atremahdi-comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.atremahdi-comparison-table th {
  background: linear-gradient(135deg, #6366f1, #ec4899);
  color: #fff;
  font-weight: 600;
  padding: 12px 14px;
  text-align: right;
  font-size: 14px;
}

.atremahdi-comparison-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  background: #fff;
}

.atremahdi-comparison-table tr:nth-child(even) td {
  background: #fafbff;
}

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

.atremahdi-internal-link {
  color: #6366f1;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px dotted #6366f1;
  transition: color 0.15s, border-color 0.15s;
}

.atremahdi-internal-link:hover {
  color: #ec4899;
  border-bottom-color: #ec4899;
}

@media (max-width: 768px) {
  .atremahdi-comparison-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
