* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Inter', sans-serif;
  background: #1e1e1e;
  color: #f1f1f1;
  padding-bottom: 40px;
}
/* ================= TOP BAR ================= */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #121212;
  padding: 12px 20px;
  border-bottom: 1px solid #333;
}
.credit {
  font-size: 13px;
  color: #ccc;
}
.credit a {
  color: #8ab4f8;
  text-decoration: none;
}
.credit a:hover {
  text-decoration: underline;
}
.donate-group {
  display: flex;
  gap: 10px;
}
.donate-button {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.donate-button:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}
.donate-button.venmo {
  background: #3d95ce;
}
.donate-button.paypal {
  background: #003087;
}
/* ================= TITLE ================= */
h1 {
  text-align: center;
  margin: 30px 0 20px;
  font-weight: 700;
}
/* ================= FILTERS ================= */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 15px;
}
.filters select,
.filters button {
  padding: 10px;
  background: #2b2b2b;
  color: #fff;
  border: 1px solid #444;
  border-radius: 6px;
  font-size: 14px;
}
.filters button {
  cursor: pointer;
  background: #444;
}
.filters button:hover {
  background: #555;
}
/* ================= JOB LIST ================= */
.jobs {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  margin-top: 20px;
}
.job {
  width: 95%;
  max-width: 1100px;
  background: #2a2a2a;
  padding: 20px;
  border-radius: 10px;
}
.job-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #444;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.job-header h3 {
  font-weight: 600;
}
.date {
  font-size: 12px;
  color: #aaa;
}
.job-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.job-info p {
  min-width: 200px;
  font-size: 14px;
}
.notes {
  margin-top: 12px;
  font-size: 13px;
  color: #ccc;
}

/* Mensaje de carga */
.loading {
  text-align: center;
  color: #aaa;
  font-size: 16px;
  padding: 40px 0;
}