body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background: #f9f9f9;
  margin: 0;
  padding: 0;
}

/* ---------- Payout summary ---------- */
.payout-summary {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  margin: 20px auto;
  max-width: 1200px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.payout-summary h2 {
  margin-bottom: 10px;
  font-size: 20px;
}

.payout-summary strong {
  color: #ffe600;
}

/* ---------- Section headings ---------- */
h3 {
  margin: 25px 0 10px;
  color: #222;
  font-size: 18px;
}

/* ---------- Tables ---------- */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

thead {
  background: #f8f9fa;
}

th, td {
  padding: 12px 15px;
  text-align: left;
  border: 1px solid #ddd;
  font-size: 14px;
}

th {
  font-weight: 600;
  color: #444;
}

tr:nth-child(even) {
  background: #fafafa;
}

tr:hover {
  background: #f1f7ff;
}

td[colspan] {
  text-align: center;
  font-style: italic;
  color: #777;
}

/* ---------- Responsive tables ---------- */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
  border-radius: 6px;
}

/* Ensure table scrolls horizontally on small screens */
@media screen and (max-width: 768px) {
  table {
    font-size: 13px;
  }

  th, td {
    padding: 10px;
  }
}

@media screen and (max-width: 500px) {
  body {
    font-size: 13px;
  }

  th, td {
    padding: 8px;
    font-size: 12px;
  }

  h3 {
    font-size: 16px;
  }
}


.dev-alert {
  background: #fdecea;
  color: #b71c1c;
  border: 1px solid #f5c6cb;
  padding: 12px 18px;
  border-radius: 6px;
  margin-bottom: 20px;
	margin-top: 20px;
  font-size: 15px;
}
.dev-alert strong {
  color: #a31616;
}
