/* Custom component styles (mirrors globals.css Tailwind @layer components) */
.btn-primary {
  display: inline-block;
  background-color: #f97316;
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.15s;
  text-align: center;
  text-decoration: none;
}
.btn-primary:hover { background-color: #ea6c09; }

.btn-outline {
  display: inline-block;
  border: 2px solid #f97316;
  color: #f97316;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.15s;
  text-align: center;
  text-decoration: none;
}
.btn-outline:hover { background-color: #fff7ed; }

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

.card {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  padding: 1.5rem;
}

/* Blog article table styles */
.text-gray-800 table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.875rem;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 0.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.text-gray-800 table thead tr {
  background-color: #f97316;
}

.text-gray-800 table th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  border: none;
}

.text-gray-800 table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: top;
  line-height: 1.5;
}

.text-gray-800 table tbody tr:nth-child(even) {
  background-color: #fff7ed;
}

.text-gray-800 table tbody tr:hover {
  background-color: #fed7aa;
  transition: background-color 0.15s;
}

.text-gray-800 table tbody tr td:first-child {
  font-weight: 600;
  white-space: nowrap;
}

.text-gray-800 table tbody tr:last-child td {
  border-bottom: none;
}

/* Pricing emphasis (2nd column = price in most comparison tables) */
.text-gray-800 table td:nth-child(2) {
  font-weight: 600;
  color: #c2410c;
}
