body {
  font-family: Arial, sans-serif;
  background: #0d0d0d;
  color: white;
  padding: 30px;
  margin: 0;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* important */
  gap: 12px;
}

h1 {
  margin: 0 0 20px 0;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* important */
  gap: 12px;
}

.top-links a {
  color: #4da6ff;
  text-decoration: none;
}

.top-links a:hover {
  text-decoration: underline;
}

/* ✨ Glow ONLY for support link */
.support-link {
  color: #ffd166;
  text-shadow: 0 0 6px rgba(255, 209, 102, 0.7);
}

h2.section-title {
  margin-top: 10px;
  margin-bottom: 12px;
}

h2.completed-title {
  margin-top: 32px;
  margin-bottom: 12px;
}

.earnings-box {
  margin-bottom: 12px;
  padding: 10px 12px;
  background: #111;
  border: 1px solid #333;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.table-toolbar {
  margin-top: 12px;
}

.below-table-toolbar {
  display: flex;
  justify-content: flex-start;
}

.exp-table {
  width: 100%;
  border-collapse: separate;   /* IMPORTANT */
  border-spacing: 0;           /* keeps layout tight */
  border-radius: 10px;
  overflow: hidden;
}

.exp-table th,
.exp-table td {
  border: 1px solid #333;
  padding: 10px;
  vertical-align: top;
}

.exp-table th {
  background: #1a1a1a;
}

.exp-table td {
  background: #111;
}

input {
  width: 100%;
  padding: 6px;
  background: #1b1b1b;
  border: none;
  color: white;
}

button {
  padding: 6px 10px;
  margin-right: 6px;
  border: none;
  background: white;
  color: black;
  cursor: pointer;
}

button:hover {
  background: #ddd;
}

.now-btn {
  font-size: 12px;
}

.status-pending {
  color: orange;
}

.status-paid {
  color: lime;
}

.completed-summary {
  margin-bottom: 12px;
  padding: 10px;
  background: #111;
  border: 1px solid #333;
}

.exp-table th:first-child {
  border-top-left-radius: 10px;
}

.exp-table th:last-child {
  border-top-right-radius: 10px;
}

.exp-table tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

.exp-table tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

.exp-table {
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
