/* Releases table styles, aligned with existing app palette and spacing */

.releases-subtitle {
  max-width: 1100px;
  margin: 0 auto 22px;
  padding: 0 16px;
  line-height: 1.6;
}

.releases-subtitle a {
  color: #ff5419;
  text-decoration: none;
  font-weight: 600;
}

.releases-subtitle a:hover {
  text-decoration: underline;
}

.releases-table-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  overflow-x: auto;
}

.releases-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.releases-table thead th {
  text-align: left;
  background: linear-gradient(90deg, #ff5419, #ff8c00);
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  padding: 12px 14px;
  white-space: nowrap;
}

.releases-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #f0f0f0;
  color: #444;
  font-size: 0.9rem;
  vertical-align: middle;
}

.releases-table tbody tr:nth-child(even) {
  background: #fcfcfc;
}

.releases-table tbody tr:hover {
  background: #fff7ef;
}

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

.releases-na {
  color: #9a9a9a;
}

.releases-pagination {
  max-width: 1100px;
  margin: 18px auto 0;
  padding: 0 16px;
  display: flex;
  gap: 10px;
}

.releases-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 10px 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff5419, #ff8c00);
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: opacity 0.2s;
}

.releases-page-link:hover {
  opacity: 0.88;
}

.releases-separator {
  max-width: 1100px;
  margin: 18px auto 0;
  padding: 0 16px;
}

.releases-separator hr {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 140, 0, 0.55), rgba(255, 140, 0, 0.1), transparent);
}

@media (max-width: 700px) {
  .releases-table thead th,
  .releases-table td {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .releases-page-link {
    min-width: 80px;
  }
}
