.pg-filter,
.pg-form {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.pg-filter {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  align-items: end;
}

.pg-filter input,
.pg-filter select,
.pg-form input,
.pg-form textarea,
.pg-form button,
.pg-filter button {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d4d4d8;
  border-radius: 8px;
  font: inherit;
}

.pg-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

.pg-jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.pg-job-card {
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.pg-job-card.is-featured {
  border-color: #0f766e;
}

.pg-badge {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #134e4a;
  background: #ccfbf1;
  padding: 4px 8px;
  border-radius: 999px;
}

.pg-job-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.pg-meta {
  color: #3f3f46;
  margin: 0 0 8px;
}

.pg-salary {
  font-weight: 600;
}

.pg-button,
.pg-filter button,
.pg-form button {
  background: #0f766e;
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.pg-inline-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.pg-inline-check input {
  width: auto;
}

.pg-dashboard {
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  padding: 18px;
}

.pg-list {
  margin: 0 0 18px;
  padding-left: 18px;
}

.pg-auth-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.pg-ats-table {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.pg-ats-row {
  display: grid;
  grid-template-columns: 2.2fr 0.7fr 1fr auto;
  gap: 10px;
  align-items: center;
  border: 1px solid #e4e4e7;
  background: #fafafa;
  padding: 10px;
  border-radius: 10px;
}

@media (max-width: 780px) {
  .pg-ats-row {
    grid-template-columns: 1fr;
  }
}

.pg-single-job {
  max-width: 900px;
  margin: 20px auto;
}

.pg-notice {
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.pg-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
