body {
  background: #fff;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}
.wfh-shell,
.wfh-main {
  width: min(1540px, calc(100% - 112px));
  margin: 0 auto;
}
.wfh-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 0;
}
.wfh-logo img {
  width: 565px;
  max-width: 100%;
  height: auto;
  display: block;
}
.wfh-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.wfh-nav a {
  background: #ff9700;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 15px;
  line-height: 1;
  padding: 12px 28px;
  border-radius: 8px;
  text-transform: uppercase;
}
.wfh-nav a.active,
.wfh-nav a:hover {
  background: #c87800;
  color: #fff;
}
.wfh-hero {
  padding: 90px 0 128px;
  text-align: center;
  box-shadow: inset 0 12px 18px -22px rgba(0,0,0,.45);
}
.wfh-hero h1 {
  font-size: clamp(36px, 4vw, 58px);
  margin: 0 0 28px;
  color: #333;
  font-weight: 900;
}
.wfh-hero p {
  font-size: clamp(21px, 2vw, 30px);
  color: #555;
  max-width: 920px;
  margin: 0 auto;
  line-height: 1.4;
}
.wfh-section-title {
  font-size: 34px;
  line-height: 1.2;
  margin: 0 0 58px;
  padding-bottom: 20px;
  border-bottom: 4px solid #f39c12;
  display: inline-block;
  font-weight: 900;
}
.wfh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 76px 150px;
  margin: 0 0 90px;
}
.wfh-task-card {
  min-height: 430px;
  background: #eee;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 42px 34px;
  color: #111;
  box-shadow: 0 6px 14px rgba(0,0,0,.05);
}
.wfh-task-card i {
  color: #555;
  font-size: 62px;
  margin-bottom: 34px;
}
.wfh-task-card h3 {
  font-size: 31px;
  line-height: 1.2;
  margin: 0 0 32px;
  font-weight: 900;
  text-transform: uppercase;
}
.wfh-task-card p {
  font-size: 21px;
  line-height: 1.45;
  margin: 0 0 42px;
  max-width: 440px;
  color: #555;
}
.wfh-task-card .pay {
  font-size: 25px;
  font-weight: 900;
  color: #111;
  margin-bottom: 36px;
}
.wfh-btn,
.submit-btn {
  display: inline-block;
  background: #0778ff;
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 15px 34px;
  min-width: 190px;
  text-align: center;
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}
.wfh-profile-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 90px;
}
.wfh-profile-box {
  background: #eee;
  border-radius: 8px;
  padding: 42px 24px;
  text-align: center;
}
.wfh-profile-box i {
  font-size: 80px;
  color: #555;
  margin-bottom: 24px;
}
.wfh-profile-box p {
  text-align: left;
  font-size: 15px;
  font-weight: 900;
  margin: 22px 0;
}
.wfh-summary-box {
  background: #555;
  color: #fff;
  border-radius: 8px;
  padding: 36px 46px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 24px;
  align-items: start;
}
.wfh-summary-box h4 {
  margin: 0 0 18px;
  font-size: 16px;
  text-transform: uppercase;
}
.wfh-summary-box p {
  color: #0780ff;
  font-weight: 900;
  margin: 10px 0;
}
.wfh-task-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 74px;
}
.wfh-task-panel,
.wfh-form-panel {
  background: #eee;
  border-radius: 10px;
  padding: 42px;
  min-height: 520px;
}
.wfh-task-panel {
  text-align: left;
}
.wfh-task-icon {
  text-align: center;
  margin-bottom: 20px;
}
.wfh-task-icon i {
  color: #555;
  font-size: 72px;
}
.wfh-task-panel h1 {
  text-align: center;
  font-size: 36px;
  line-height: 1.15;
  margin: 0 0 28px;
  text-transform: uppercase;
  font-weight: 900;
}
.wfh-stats {
  margin: 30px 0;
  font-weight: 900;
  line-height: 2;
}
.wfh-form-panel {
  box-shadow: 0 7px 12px rgba(0,0,0,.35);
  padding-top: 0;
}
.wfh-form-top {
  height: 60px;
  background: #12a0ee;
  margin: 0 -42px 36px;
  border-radius: 10px 10px 0 0;
}
.wfh-field {
  margin-bottom: 22px;
}
.wfh-field label {
  display: block;
  font-weight: 900;
  margin-bottom: 8px;
}
.wfh-field input,
.wfh-field textarea,
.wfh-field select {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #bbb;
  background: #fff;
  padding: 14px 16px;
  min-height: 52px;
  font-size: 16px;
}
.wfh-field textarea {
  min-height: 120px;
}
.wfh-message {
  background: #fff3cd;
  border-left: 5px solid #f39c12;
  padding: 14px 18px;
  margin-bottom: 24px;
  font-weight: 700;
}
.wfh-footer {
  background: #2d4053;
  color: #c4ced7;
  margin-top: 90px;
}
.wfh-footer-inner {
  width: min(1720px, calc(100% - 112px));
  margin: 0 auto;
  padding: 95px 0 78px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 52px;
}
.wfh-footer-logo img {
  width: 330px;
  filter: grayscale(1);
  opacity: .72;
  margin-bottom: 36px;
}
.wfh-footer h3 {
  color: #ff9700;
  font-size: 24px;
  margin: 0 0 22px;
  border-bottom: 3px solid rgba(255,151,0,.22);
  padding-bottom: 22px;
}
.wfh-footer a {
  color: #c4ced7;
  display: block;
  text-decoration: none;
  font-size: 22px;
  margin-bottom: 24px;
}
.wfh-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.wfh-pill {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  padding: 13px 18px;
  color: #fff;
  font-weight: 700;
}
.wfh-footer-bottom {
  border-top: 1px solid rgba(255,151,0,.2);
  text-align: center;
  padding: 34px 16px;
  color: rgba(255,255,255,.45);
  font-size: 18px;
}
@media (max-width: 1100px) {
  .wfh-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .wfh-task-layout, .wfh-profile-row, .wfh-summary-box, .wfh-footer-inner { grid-template-columns: 1fr; }
  .wfh-logo img { width: 360px; }
}
@media (max-width: 650px) {
  .wfh-shell, .wfh-main, .wfh-footer-inner { width: min(100% - 32px, 1540px); }
  .wfh-header { flex-direction: column; align-items: flex-start; }
  .wfh-nav { justify-content: flex-start; }
  .wfh-grid { grid-template-columns: 1fr; }
  .wfh-task-card { min-height: 340px; }
  .wfh-hero { padding: 45px 0 70px; }
}

/* Shared Home Base Work portal chrome, aligned with the root homepage. */
:root { --hb-navy:#123754; --hb-blue:#2196f3; --hb-green:#4caf50; --hb-text:#27323b; --hb-muted:#66727d; }
body { background:#f7fafc; color:var(--hb-text); font-family:Arial,Helvetica,sans-serif; }
.hb-shell { width:min(1180px,calc(100% - 40px)); margin:0 auto; }
.hb-header { background:#fff; border-bottom:1px solid #e6edf3; box-shadow:0 2px 10px rgba(18,55,84,.08); position:relative; z-index:10; }
.hb-header .hb-shell { min-height:78px; display:flex; align-items:center; gap:20px; }
.hb-logo { display:flex; align-items:center; margin-right:auto; }
.hb-logo img { display:block; max-height:56px; max-width:260px; width:auto; }
.hb-nav { display:flex; align-items:center; justify-content:flex-end; gap:5px; }
.hb-nav a { color:var(--hb-navy); text-decoration:none; font-size:12px; font-weight:800; letter-spacing:.15px; padding:10px 9px; text-transform:uppercase; }
.hb-nav a:hover { color:var(--hb-blue); }
.hb-nav .hb-nav-btn { border-radius:5px; color:#fff; margin-left:4px; padding:10px 13px; }
.hb-nav .hb-nav-profile { background:var(--hb-blue); }
.hb-nav .hb-nav-signup { background:var(--hb-green); }
.hb-nav-toggle,.hb-nav-toggle-label { display:none; }
.wfh-portal-main { min-height:calc(100vh - 390px); padding-top:28px; padding-bottom:22px; }
.wfh-auth-wrap { padding-top:40px; padding-bottom:60px; }
.wfh-page-title h1,.wfh-section-title { color:var(--hb-navy); }
.wfh-form-top { background:var(--hb-blue); }
.wfh-btn,.submit-btn { background:var(--hb-blue); }
.wfh-btn:hover,.submit-btn:hover { background:#167fcf; color:#fff; }
.hb-footer { margin-top:50px; background:var(--hb-navy); color:#b9c7d4; }
.hb-footer-grid { display:grid; grid-template-columns:1.4fr repeat(3,1fr); gap:34px; padding:46px 0 34px; }
.hb-footer h3 { color:var(--hb-blue); font-size:14px; margin:0 0 16px; text-transform:uppercase; }
.hb-footer p { font-size:14px; line-height:1.6; margin:14px 0 0; }
.hb-footer a { color:#d5dee7; display:block; font-size:14px; line-height:1.9; text-decoration:none; }
.hb-footer a:hover { color:#fff; }
.hb-footer .hb-footer-signup { color:#72d575; font-weight:bold; }
.hb-footer-logo { max-height:42px; max-width:230px; filter:brightness(0) invert(1); opacity:.9; }
.hb-footer-bottom { border-top:1px solid rgba(255,255,255,.12); color:#91a1af; font-size:13px; padding:18px 20px; text-align:center; }
.hb-care-notice { background:#fff4df; border-bottom:1px solid #f3dcae; color:#58616b; }
.hb-care-notice-inner { align-items:center; display:flex; gap:12px; min-height:48px; padding:8px 0; }
.hb-care-notice i { color:#e68616; font-size:19px; }
.hb-care-notice p { flex:1; font-size:12px; line-height:1.35; margin:0; }
.hb-care-notice p strong { color:#9b5a06; }
.hb-care-notice a { background:#2dcc70; border-radius:18px; color:#fff; font-size:12px; font-weight:900; padding:8px 17px; text-decoration:none; text-transform:uppercase; white-space:nowrap; }
.hb-care-notice a:hover { background:#20b861; color:#fff; }
@media (max-width: 1060px) { .hb-nav a { font-size:11px; padding:9px 6px; } .hb-logo img { max-width:220px; } }
@media (max-width: 800px) { .hb-header .hb-shell { min-height:70px; flex-wrap:wrap; } .hb-nav-toggle-label { color:var(--hb-navy); cursor:pointer; display:block; font-size:24px; padding:12px; } .hb-nav { display:none; flex-basis:100%; flex-direction:column; align-items:stretch; padding:4px 0 16px; } .hb-nav a { border-top:1px solid #edf1f5; padding:12px 4px; } .hb-nav .hb-nav-btn { margin:4px 0 0; text-align:center; } .hb-nav-toggle:checked ~ .hb-nav { display:flex; } .hb-footer-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width: 520px) { .hb-shell { width:min(100% - 28px,1180px); } .hb-logo img { max-width:200px; max-height:45px; } .hb-footer-grid { grid-template-columns:1fr; gap:24px; } }
@media (max-width: 650px) { .hb-care-notice-inner { align-items:flex-start; gap:8px; padding:9px 0; } .hb-care-notice p { font-size:11px; } .hb-care-notice a { font-size:11px; padding:8px 12px; } }

/* Online data-entry job page */
.data-entry-layout { display:grid; grid-template-columns:minmax(0,1fr) 320px; gap:30px; align-items:start; margin:0 auto 50px; max-width:1180px; }
.data-entry-content { display:grid; gap:28px; min-width:0; }
.data-entry-card { background:#fff; border:1px solid #dfe9f1; border-radius:14px; box-shadow:0 8px 24px rgba(18,55,84,.09); overflow:hidden; }
.data-entry-card-heading { background:#fff4e2; border-bottom:1px solid #f5dfb7; padding:18px 26px; }
.data-entry-card-heading-blue { background:#e3f2fd; border-bottom-color:#bbdefb; }
.data-entry-card-heading-green { background:#e8f5e9; border-bottom-color:#c8e6c9; }
.data-entry-step { color:#df7600; display:block; font-size:12px; font-weight:900; letter-spacing:1px; margin-bottom:4px; }
.data-entry-card-heading-blue .data-entry-step { color:#1976d2; }
.data-entry-card-heading-green .data-entry-step { color:#2e7d32; }
.data-entry-card h1,.data-entry-card h2 { color:#123754; font-size:22px; line-height:1.25; margin:0; text-transform:uppercase; }
.data-entry-card h1 em { color:#df7600; font-size:14px; font-style:normal; white-space:nowrap; }
.data-entry-card-body { display:flex; gap:22px; padding:26px; }
.data-entry-form-body { display:block; }
.data-entry-icon { align-items:center; background:#fff4e2; border-radius:50%; color:#df7600; display:flex; flex:0 0 56px; font-size:25px; height:56px; justify-content:center; }
.data-entry-icon-green { background:#e8f5e9; color:#2e7d32; }
.data-entry-lead { color:#314252; font-size:16px; font-weight:700; line-height:1.55; margin:0 0 14px; }
.data-entry-rules { color:#536270; line-height:1.75; margin:0; padding-left:20px; }
.data-entry-rules li { margin:4px 0; }
.data-entry-stats { background:#f7fafc; border-top:1px solid #edf2f6; display:flex; flex-wrap:wrap; gap:8px 20px; padding:14px 26px; color:#425466; font-size:14px; }
.data-entry-stats strong { color:#123754; }
.data-entry-card .wfh-reset-box { margin:0; padding:18px 26px 24px; }
.data-entry-card .wfh-reset-box label { color:#697784; display:block; font-size:13px; margin-bottom:12px; }
.data-entry-submit { background:#2196f3; }
.data-entry-back { background:#6c7884; margin-left:10px; }
.data-entry-payout-actions { align-items:center; display:flex; flex-wrap:wrap; gap:15px; }
.data-entry-help { color:#1976d2; font-size:14px; font-weight:800; text-decoration:none; }
.data-entry-ad-sticky { position:sticky; top:24px; }
.data-entry-ad-label { background:#123754; border-radius:10px 10px 0 0; color:#fff; font-size:12px; font-weight:800; letter-spacing:.7px; padding:12px 16px; text-align:center; text-transform:uppercase; }
.data-entry-ad-box { background:#f6f9fc; border:1px solid #dfe9f1; border-top:0; display:flex; justify-content:center; min-height:250px; overflow:hidden; padding:10px; }
.data-entry-ad-box ins { max-width:100%; }
.data-entry-ad-placeholder { align-items:center; color:#9aa8b5; display:flex; flex-direction:column; font-size:13px; gap:12px; justify-content:center; min-height:230px; text-transform:uppercase; }
.data-entry-ad-placeholder i { font-size:44px; }
.data-entry-ad-note { background:#e3f2fd; border:1px solid #bbdefb; border-top:0; border-radius:0 0 10px 10px; color:#386278; font-size:12px; line-height:1.45; padding:13px 15px; }
.data-entry-ad-note i { color:#2196f3; margin-right:5px; }
@media (max-width: 900px) { .data-entry-layout { grid-template-columns:1fr; } .data-entry-ad-rail { max-width:500px; width:100%; margin:0 auto; } .data-entry-ad-sticky { position:static; } }
@media (max-width: 560px) { .data-entry-card-heading,.data-entry-card-body,.data-entry-card .wfh-reset-box { padding-left:18px; padding-right:18px; } .data-entry-card-body { flex-direction:column; gap:14px; } .data-entry-card h1,.data-entry-card h2 { font-size:18px; } .data-entry-card h1 em { display:block; margin-top:4px; } .data-entry-back { margin:10px 0 0; } }

/* Compact Home Base Work user theme: sized to match the public homepage. */
.wfh-shell,
.wfh-main {
  width: min(1200px, calc(100% - 48px));
}
.wfh-header {
  padding: 22px 0;
}
.wfh-logo img {
  width: 330px;
}
.wfh-nav a {
  font-size: 13px;
  padding: 10px 22px;
}
.wfh-page-title,
.wfh-hero {
  padding: 36px 0 52px;
  text-align: center;
}
.wfh-page-title h1,
.wfh-hero h1 {
  font-size: 30px;
  margin-bottom: 12px;
}
.wfh-page-title p,
.wfh-hero p {
  font-size: 17px;
  max-width: 760px;
}
.wfh-section-title {
  font-size: 24px;
  margin-bottom: 28px;
  padding-bottom: 10px;
  border-bottom-width: 3px;
}
.wfh-grid {
  gap: 28px;
  margin-bottom: 48px;
}
.wfh-task-card {
  min-height: 330px;
  padding: 30px 24px;
}
.wfh-task-card.is-disabled {
  opacity: .55;
  filter: grayscale(.45);
}
.wfh-task-card i {
  font-size: 44px;
  margin-bottom: 22px;
}
.wfh-task-card h3 {
  font-size: 22px;
  margin-bottom: 18px;
}
.wfh-task-card p {
  font-size: 16px;
  margin-bottom: 24px;
}
.wfh-task-card .pay {
  font-size: 18px;
  margin-bottom: 24px;
}
.wfh-coming-soon {
  color: #777;
  font-weight: 900;
  text-transform: uppercase;
}
.wfh-btn,
.submit-btn {
  border-radius: 7px;
  padding: 12px 26px;
  min-width: 150px;
  font-size: 13px;
}
.wfh-btn-muted {
  background: #777;
}
.wfh-btn-danger {
  background: #d64545;
}
.wfh-profile-row {
  grid-template-columns: 260px 1fr;
  gap: 24px;
  margin-bottom: 46px;
}
.wfh-profile-box {
  padding: 30px 22px;
}
.wfh-profile-box i {
  font-size: 58px;
  margin-bottom: 20px;
}
.wfh-profile-box p {
  font-size: 14px;
  margin: 15px 0;
}
.wfh-summary-box {
  padding: 28px 34px;
  gap: 20px;
}
.wfh-summary-box h4 {
  font-size: 14px;
}
.wfh-task-layout,
.wfh-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 42px;
}
.wfh-task-panel,
.wfh-form-panel,
.wfh-card {
  background: #eee;
  border-radius: 10px;
  padding: 30px;
}
.wfh-task-icon i {
  font-size: 54px;
}
.wfh-task-panel h1 {
  font-size: 28px;
  margin-bottom: 18px;
}
.wfh-task-description {
  font-size: 16px;
  line-height: 1.55;
  text-align: center;
  color: #555;
}
.wfh-stats {
  margin: 22px 0;
  line-height: 1.8;
}
.wfh-form-panel {
  padding-top: 0;
}
.wfh-form-top {
  height: 48px;
  margin: 0 -30px 26px;
}
.wfh-field {
  margin-bottom: 18px;
}
.wfh-field input,
.wfh-field textarea,
.wfh-field select {
  padding: 12px 14px;
  min-height: 46px;
  font-size: 15px;
}
.wfh-field textarea {
  min-height: 105px;
}
.wfh-table-wrap {
  overflow-x: auto;
}
.wfh-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.wfh-table th,
.wfh-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #e5e5e5;
  text-align: left;
}
.wfh-table th {
  background: #f4f7f6;
  font-weight: 900;
  text-transform: uppercase;
}
.wfh-reset-box {
  background: #fff;
  border: 1px dashed #d64545;
  border-radius: 8px;
  padding: 16px;
  margin-top: 20px;
}
.wfh-reset-box label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-weight: 700;
}
.wfh-auth-wrap {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto 50px;
}
.wfh-auth-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
}
.wfh-auth-logo {
  text-align: center;
  padding: 22px 0 10px;
}
.wfh-auth-logo img {
  width: 320px;
  max-width: 90%;
}
.wfh-ad {
  width: min(1000px, calc(100% - 48px));
  margin: 18px auto 34px;
  text-align: center;
  overflow: hidden;
}
.wfh-footer {
  margin-top: 52px;
}
.wfh-footer-inner {
  width: min(1200px, calc(100% - 48px));
  padding: 48px 0 40px;
  gap: 34px;
}
.wfh-footer-logo img {
  width: 210px;
  margin-bottom: 24px;
}
.wfh-footer p {
  font-size: 15px !important;
}
.wfh-footer h3 {
  font-size: 18px;
  margin-bottom: 18px;
  padding-bottom: 14px;
}
.wfh-footer a {
  font-size: 15px;
  margin-bottom: 13px;
}
.wfh-pill {
  padding: 9px 13px;
  font-size: 14px;
}
.wfh-footer-bottom {
  padding: 22px 16px;
  font-size: 14px;
}

/* Decorate existing UserWork withdrawal forms without changing their markup. */
.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}
.container .section-title {
  font-size: 26px;
  line-height: 1.2;
  margin: 36px 0 24px;
  color: #2d4053;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}
.container .top-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}
.container .form-card,
.container .info-card {
  background: #eee;
  border-radius: 10px;
  padding: 0;
  box-shadow: 0 6px 14px rgba(0,0,0,.05);
  overflow: hidden;
}
.container .form-card-header {
  min-height: 46px;
  background: #0f94e8 !important;
  color: #fff;
}
.container .form-card-body,
.container .info-card {
  padding: 30px;
}
.container .form-card h3,
.container .info-card h3 {
  font-size: 22px !important;
  color: #111;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 22px !important;
  font-weight: 900;
}
.container .form-card label {
  display: block;
  font-weight: 900;
  margin: 14px 0 7px;
  color: #111;
}
.container .form-card input,
.container .form-card select,
.container .form-card textarea {
  width: 100%;
  box-sizing: border-box;
  min-height: 46px;
  border: 1px solid #c8c8c8;
  background: #fff;
  padding: 10px 12px;
  font-size: 15px;
  margin: 0 0 12px;
}
.container .flag-container {
  display: block !important;
}
.container #selected_logo_container img {
  max-height: 44px;
  margin: 8px auto 14px;
}
.container .submit-btn {
  width: auto;
  min-width: 220px;
  background: #0778ff !important;
  margin-top: 6px;
}
.container #msform2 .submit-btn {
  background: #f44336 !important;
}
.container .info-card {
  text-align: left;
}
.container .info-card i {
  font-size: 34px;
  color: #0f94e8;
  display: block;
  text-align: center;
  margin-bottom: 14px;
}
.container .info-card ul {
  padding-left: 20px;
}
@media (max-width: 900px) {
  .wfh-grid,
  .wfh-task-layout,
  .wfh-two-col,
  .wfh-profile-row,
  .wfh-summary-box,
  .wfh-footer-inner,
  .wfh-auth-grid,
  .container .top-split-grid {
    grid-template-columns: 1fr;
  }
  .wfh-logo img {
    width: 300px;
  }
}
@media (max-width: 650px) {
  .wfh-shell,
  .wfh-main,
  .wfh-footer-inner,
  .wfh-auth-wrap {
    width: min(100% - 28px, 1200px);
  }
  .wfh-task-card {
    min-height: 300px;
  }
}

/* Category three: online data-entry layout, matched to the supplied reference. */
.data-entry-layout { align-items:start; display:grid; gap:38px; grid-template-columns:minmax(0,1fr) 350px; margin:0 auto 60px; max-width:1540px; }
.data-entry-content { display:grid; gap:38px; min-width:0; }
.data-entry-instructions,.data-entry-work-card,.data-entry-form-card,.data-entry-payout-login,.data-entry-benefits { background:#fff; border:1px solid #dfe3e6; border-radius:18px; box-shadow:0 12px 28px rgba(30,57,77,.08); padding:58px 70px; }
.data-entry-instructions h1 { color:#d96600; font-size:27px; margin:0 0 34px; text-align:center; }
.data-entry-instructions h1 i { margin-right:10px; }
.data-entry-instructions ul { color:#5c6873; font-size:18px; line-height:1.75; margin:0 auto; max-width:1050px; padding-left:28px; }
.data-entry-instructions li { margin:8px 0; }
.data-entry-work-card { padding:72px 80px; }
.data-entry-step-one { background:#e0f1ff; border-radius:20px; margin:0 auto 42px; max-width:840px; padding:32px 34px; text-align:center; }
.data-entry-step-one h2 { color:#087cf5; font-size:27px; margin:0 0 18px; }
.data-entry-step-one p { color:#485866; font-size:18px; line-height:1.45; margin:0 auto 24px; max-width:680px; }
.data-entry-source-link { background:#087ff6; border-radius:8px; color:#fff; display:block; font-size:19px; font-weight:900; padding:21px 18px; text-decoration:none; }
.data-entry-source-link:hover { background:#076ed3; color:#fff; }
.data-entry-account { color:#263746; max-width:770px; }
.data-entry-account h3 { font-size:21px; margin:0 0 20px; }
.data-entry-account p { font-size:17px; margin:14px 0; }
.data-entry-account p span,.data-entry-account p a { color:#087ff6; text-decoration:none; }
.data-entry-account p b { color:#42ac55; }
.data-entry-discover { border:1px solid #ccd3da; border-radius:8px; margin:50px auto 0; max-width:600px; overflow:hidden; }
.data-entry-discover h4 { background:#e4eefc; border-bottom:1px solid #ccd3da; font-size:20px; margin:0; padding:18px 28px; }
.data-entry-discover a { border-bottom:1px solid #edf0f3; color:#344557; display:flex; font-size:18px; justify-content:space-between; padding:20px 28px; text-decoration:none; }
.data-entry-discover a:last-child { border-bottom:0; }
.data-entry-discover i { color:#99a2a9; }
.data-entry-form-card h2 { color:#087ff6; font-size:29px; margin:0 0 34px; text-align:center; }
.data-entry-form-card .wfh-field label { color:#263746; font-size:16px; font-weight:800; }
.data-entry-form-card .wfh-field input,.data-entry-form-card .wfh-field textarea { border:1px solid #cfd6dc; border-radius:7px; font-size:16px; }
.data-entry-form-card .wfh-field textarea { min-height:180px; }
.data-entry-submit { background:#087ff6; }
.data-entry-back { background:#6d7780; margin-left:10px; }
.data-entry-progress { color:#526272; font-size:15px; margin-top:25px; }
.data-entry-reset { border-top:1px solid #e5eaee; margin-top:22px; padding-top:18px; }
.data-entry-reset label { color:#65727e; display:block; font-size:13px; margin-bottom:10px; }
.data-entry-reset button { background:transparent; border:0; color:#d96600; cursor:pointer; font-size:13px; font-weight:800; padding:0; }
.data-entry-payout-login { text-align:center; }
.data-entry-payout-login > h2 { color:#263c55; font-size:25px; margin:0 0 30px; text-align:right; }
.data-entry-plan-status { align-items:center; background:#ff4036; color:#fff; display:grid; font-size:16px; grid-template-columns:1fr 1fr auto; margin:0 -70px 10px; min-height:44px; }
.data-entry-plan-status span { color:#222; font-weight:400; }
.data-entry-plan-status b { background:#c9352c; border-radius:7px; padding:10px 16px; }
.data-entry-payout-login h3 { color:#263746; font-size:23px; margin:12px 0 30px; }
.data-entry-payout-login > p { color:#687681; font-size:16px; margin-bottom:30px; }
.data-entry-payout-login input { border:1px solid #cfd6dc; border-radius:6px; box-sizing:border-box; display:block; font-size:16px; margin:14px auto; max-width:680px; padding:15px 18px; width:100%; }
.data-entry-payout-login input[readonly] { background:#f1f1f1; color:#697681; }
.data-entry-payout-login button { background:#ff4036; border:0; border-radius:8px; color:#fff; cursor:default; font-size:19px; font-weight:900; margin-top:22px; max-width:680px; padding:20px; width:100%; }
.data-entry-benefits { background:#fff3df; border-color:#ffd18b; text-align:center; }
.data-entry-benefits > i { color:#ff9700; font-size:44px; }
.data-entry-benefits h2 { color:#263746; font-size:25px; margin:24px 0 30px; }
.data-entry-benefits ul { color:#d66300; font-size:17px; font-weight:800; line-height:1.8; margin:0 auto 30px; max-width:880px; padding-left:25px; text-align:left; }
.data-entry-benefits > a { background:#ff9700; border-radius:8px; color:#fff; display:block; font-size:19px; font-weight:900; padding:20px; text-decoration:none; }
.data-entry-benefits > .data-entry-benefits-help { background:none; color:#d66300; font-size:17px; padding:22px 0 0; }
.data-entry-ad-rail { align-self:start; background:#f7fafc; border-radius:12px; padding:14px; position:sticky; top:20px; width:322px; z-index:2; }
.data-entry-ad-label { background:#123754; border-radius:10px 10px 0 0; color:#fff; font-size:12px; font-weight:900; letter-spacing:.8px; padding:13px; text-align:center; }
.data-entry-ad-box { background:#fff; border:1px solid #dfe3e6; border-top:0; box-shadow:0 8px 20px rgba(30,57,77,.08); display:flex; height:600px; justify-content:center; overflow:hidden; padding:0; width:320px; }
.data-entry-ad-box .adsbygoogle { display:inline-block !important; height:600px !important; width:300px !important; }
.wfh-btn-coming-soon { background:#e67e22; }
.wfh-btn-coming-soon:hover { background:#ca6817; }
.wfh-job-list { display:grid; gap:16px; margin:0 auto 52px; max-width:1520px; }
.wfh-job-row { align-items:center; background:#fff; border:1px solid #e1e5e9; border-radius:14px; box-shadow:0 8px 22px rgba(19,47,70,.06); display:grid; gap:30px; grid-template-columns:88px minmax(230px,1.2fr) 150px minmax(280px,1.7fr) 172px; min-height:148px; padding:22px 36px; }
.wfh-job-icon { align-items:center; border-radius:14px; display:flex; font-size:38px; height:82px; justify-content:center; width:82px; }
.wfh-job-icon i { margin:0; }
.job-icon-blue { background:#e4f0ff; color:#087ff6; }.job-icon-green { background:#e3f8e8; color:#06982d; }.job-icon-purple { background:#eceaff; color:#4639d8; }.job-icon-orange { background:#fff0d8; color:#f07600; }.job-icon-teal { background:#e1f8f7; color:#0b9296; }.job-icon-pink { background:#ffe6ef; color:#df3f70; }.job-icon-red { background:#ffe7e4; color:#e55340; }
.wfh-job-row h3 { color:#111; font-size:22px; line-height:1.2; margin:0; text-transform:uppercase; }
.wfh-job-tag { background:#f1f2f4; border-radius:6px; color:#4c535d; font-size:16px; font-weight:800; justify-self:start; padding:10px 16px; white-space:nowrap; }
.wfh-job-row p { color:#4d5662; font-size:17px; line-height:1.4; margin:0; }
.wfh-job-start { border:2px solid #087ff6; border-radius:28px; color:#087ff6; font-size:15px; font-weight:900; justify-self:end; padding:14px 28px; text-decoration:none; text-transform:uppercase; white-space:nowrap; }
.wfh-job-start:hover { background:#087ff6; color:#fff; }.wfh-job-coming-soon { border-color:#e67e22; color:#c86b16; }.wfh-job-coming-soon:hover { background:#e67e22; color:#fff; }
.wfh-job-ad { background:#fff; border:1px solid #e1e5e9; border-radius:14px; min-height:120px; overflow:hidden; padding:15px; text-align:center; }
@media (max-width:1050px) { .wfh-job-row { gap:18px; grid-template-columns:82px 1fr auto; padding:22px; } .wfh-job-row h3 { font-size:21px; } .wfh-job-tag { grid-column:2; } .wfh-job-row p { grid-column:2 / 4; } .wfh-job-start { grid-column:3; grid-row:1 / 3; } }
@media (max-width:650px) { .wfh-job-row { gap:14px; grid-template-columns:64px 1fr; min-height:0; padding:20px; } .wfh-job-icon { font-size:28px; height:64px; width:64px; } .wfh-job-row h3 { font-size:19px; } .wfh-job-tag,.wfh-job-row p,.wfh-job-start { grid-column:2; } .wfh-job-start { grid-row:auto; justify-self:start; } .wfh-job-ad { min-height:100px; } }
.data-entry-coming-soon { background:#fff3df; border:1px solid #ffd18b; border-radius:12px; color:#263746; margin:0 auto; max-width:680px; padding:24px; text-align:center; }
.data-entry-coming-soon h3 { color:#d66300; font-size:22px; margin:0 0 10px; }
.data-entry-coming-soon p { font-size:16px; margin:0 0 16px; }
.data-entry-coming-soon form { display:flex; gap:10px; justify-content:center; }
.data-entry-coming-soon input { border:1px solid #cfd6dc; border-radius:7px; font-size:15px; max-width:320px; padding:13px; width:100%; }
.data-entry-coming-soon button { background:#e67e22; border:0; border-radius:7px; color:#fff; cursor:pointer; font-size:15px; font-weight:900; padding:13px 18px; white-space:nowrap; }
.data-entry-coming-soon .data-entry-available-tasks { background:#087ff6; font-size:15px; margin-top:14px; padding:13px 18px; }
.data-entry-form-card :disabled { background:#eef1f3; color:#7b8790; cursor:not-allowed; }
@media (max-width: 1050px) { .data-entry-layout { grid-template-columns:1fr; max-width:900px; } .data-entry-ad-rail { margin:0 auto; position:static; } }
@media (max-width: 380px) { .data-entry-ad-rail { box-sizing:border-box; padding:10px; width:100%; } .data-entry-ad-box { max-width:100%; width:100%; } .data-entry-ad-box .adsbygoogle { transform:scale(.9); transform-origin:top center; } }
@media (max-width: 650px) { .data-entry-instructions,.data-entry-work-card,.data-entry-form-card,.data-entry-payout-login,.data-entry-benefits { border-radius:12px; padding:34px 22px; } .data-entry-instructions h1,.data-entry-benefits h2 { font-size:21px; } .data-entry-instructions ul { font-size:16px; } .data-entry-work-card { padding:34px 22px; } .data-entry-step-one { border-radius:16px; padding:30px 18px; } .data-entry-step-one h2 { font-size:26px; } .data-entry-step-one p { font-size:18px; } .data-entry-source-link { font-size:19px; padding:23px 12px; } .data-entry-account h3 { font-size:21px; } .data-entry-account p { font-size:17px; } .data-entry-discover a,.data-entry-discover h4 { font-size:18px; padding:21px 24px; } .data-entry-form-card h2 { font-size:22px; } .data-entry-back { display:block; margin:10px 0 0; } .data-entry-payout-login > h2 { font-size:25px; text-align:center; } .data-entry-plan-status { font-size:13px; grid-template-columns:1fr auto; margin-left:-22px; margin-right:-22px; } .data-entry-plan-status span { display:none; } .data-entry-plan-status b { border-radius:0; padding:16px 12px; } .data-entry-payout-login h3 { font-size:22px; margin-bottom:26px; } .data-entry-payout-login > p { font-size:16px; margin-bottom:26px; } .data-entry-payout-login button,.data-entry-benefits > a { font-size:19px; padding:22px; } .data-entry-benefits ul { font-size:17px; } }

/* Editable User Profile task cards: two columns on desktop, one column on small screens. */
.wfh-job-list { grid-template-columns:repeat(2,minmax(0,1fr)); }
.wfh-job-row { gap:13px 18px; grid-template-columns:72px minmax(0,1fr); min-height:230px; padding:25px; }
.wfh-job-row h3 { font-size:21px; }
.wfh-job-tag { font-size:14px; grid-column:2; padding:7px 11px; }
.wfh-job-row p { font-size:16px; grid-column:1 / -1; }
.wfh-job-start { font-size:14px; grid-column:1 / -1; justify-self:start; padding:11px 22px; }
.wfh-job-ad { grid-column:1 / -1; }
.wfh-job-ad-wide { grid-column:1 / -1; min-height:135px; }
.wfh-job-ad-card { grid-column:auto; min-height:230px; }

/* Active-task menu in the logged-in header. */
.hb-nav-dropdown { position:relative; }
.hb-nav-dropdown-toggle { background:transparent; border:0; color:var(--hb-navy); cursor:pointer; font-family:inherit; font-size:12px; font-weight:800; letter-spacing:.15px; padding:10px 9px; text-transform:uppercase; }
.hb-nav-dropdown-toggle i { font-size:10px; margin-left:3px; }
.hb-nav-dropdown-toggle:hover { color:var(--hb-blue); }
.hb-nav-dropdown-menu { background:#fff; border:1px solid #e2e8ee; border-radius:8px; box-shadow:0 10px 22px rgba(18,55,84,.16); display:none; max-height:370px; min-width:215px; overflow-y:auto; padding:6px 0; position:absolute; right:0; top:100%; z-index:30; }
.hb-nav-dropdown:hover .hb-nav-dropdown-menu,.hb-nav-dropdown:focus-within .hb-nav-dropdown-menu { display:block; }
.hb-nav .hb-nav-dropdown-menu a { display:block; font-size:12px; padding:10px 15px; text-transform:none; white-space:nowrap; }
.hb-nav .hb-nav-dropdown-menu a:hover { background:#eef7ff; color:var(--hb-blue); }
@media (max-width:850px) { .wfh-job-list { grid-template-columns:1fr; } }
@media (max-width:850px) { .wfh-job-ad-card { grid-column:1 / -1; min-height:150px; } }
@media (max-width:800px) { .hb-nav-dropdown { border-top:1px solid #edf1f5; } .hb-nav-dropdown-toggle { padding:12px 4px; text-align:left; width:100%; } .hb-nav-dropdown-menu { box-shadow:none; display:block; max-height:230px; position:static; width:100%; } .hb-nav .hb-nav-dropdown-menu a { border-top:1px solid #edf1f5; padding-left:18px; } }
@media (max-width:650px) { .wfh-job-row { grid-template-columns:64px 1fr; min-height:0; padding:20px; } .wfh-job-icon { font-size:28px; height:64px; width:64px; } .wfh-job-row h3 { font-size:19px; } }
