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; } }

/* Compact User Profile task links: four per desktop row and seven per group. */
.wfh-task-groups { margin:0 auto 52px; max-width:1520px; }
.wfh-task-group-title { align-items:center; color:#173d5c; display:flex; font-size:22px; font-weight:500; gap:11px; letter-spacing:.2px; margin:44px 0 16px; text-transform:uppercase; }
.wfh-task-group-title::before { align-items:center; background:#e8f2ff; border-radius:9px; color:#087ff6; content:'\f0ae'; display:inline-flex; font-family:'Font Awesome 6 Free'; font-size:17px; font-weight:900; height:38px; justify-content:center; width:38px; }
.wfh-task-group-title:first-child { margin-top:0; }
.wfh-task-group { display:grid; gap:12px; grid-template-columns:repeat(4,minmax(0,1fr)); margin:0 0 42px; }
.wfh-task-button { align-items:center; background:#fff; border:1px solid #dce5ec; border-radius:8px; box-shadow:0 4px 12px rgba(19,47,70,.05); box-sizing:border-box; color:#183d5d; display:flex; font-size:15px; font-weight:600; gap:10px; height:50px; min-width:0; overflow:hidden; padding:0 12px; text-decoration:none; text-overflow:ellipsis; white-space:nowrap; }
.wfh-task-button i { align-items:center; background:#e8f2ff; border-radius:8px; color:#087ff6; display:inline-flex; flex:0 0 32px; font-size:16px; height:32px; justify-content:center; text-align:center; width:32px; }
.wfh-task-button:hover { background:#eef7ff; border-color:#087ff6; color:#087ff6; transform:translateY(-1px); }
.wfh-task-group:nth-of-type(2) .wfh-task-button i { background:#e5f8eb; color:#07942f; }
.wfh-task-group:nth-of-type(3) .wfh-task-button i { background:#eeebff; color:#5742d6; }
.wfh-task-group:nth-of-type(4) .wfh-task-button i { background:#fff0da; color:#e87500; }
.wfh-task-group:nth-of-type(1) + .wfh-task-group-title::before { background:#e5f8eb; color:#07942f; }
.wfh-task-group:nth-of-type(2) + .wfh-task-group-title::before { background:#eeebff; color:#5742d6; }
.wfh-task-group:nth-of-type(3) + .wfh-task-group-title::before { background:#fff0da; color:#e87500; }
@media (max-width:850px) { .wfh-task-group { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width:480px) { .wfh-task-group { grid-template-columns:1fr; gap:10px; margin-bottom:22px; } .wfh-task-button { font-size:14px; padding:0 13px; } }

/* Final categorythree visual system for every individually editable category PHP file. */
.wfh-task-layout { align-items:start; gap:28px; margin:0 auto 48px; max-width:1180px; }
.wfh-task-panel,.wfh-form-panel { background:#fff; border:1px solid #e1e7ec; border-radius:18px; box-shadow:0 10px 28px rgba(18,55,84,.08); min-height:0; padding:34px; }
.wfh-task-panel { border-top:5px solid #087ff6; }
.wfh-task-icon { margin:0 0 14px; text-align:left; }
.wfh-task-icon i { align-items:center; background:#e8f2ff; border-radius:14px; color:#087ff6; display:inline-flex; font-size:32px; height:68px; justify-content:center; width:68px; }
.wfh-task-panel h1 { color:#d66300; font-size:25px; font-weight:800; margin:0 0 16px; text-align:left; text-transform:uppercase; }
.wfh-task-description,.wfh-task-panel > p { color:#52606d !important; font-size:16px !important; line-height:1.7 !important; text-align:left !important; }
.wfh-stats { background:#f4f9ff; border:1px solid #dcecfb; border-radius:10px; color:#263746; display:grid; font-size:15px; font-weight:600; gap:5px; line-height:1.5; margin:22px 0; padding:17px 19px; }
.wfh-stats p { margin:0; }
.wfh-form-panel { border-top:5px solid #087ff6; padding-top:34px; }
.wfh-form-top { background:#e8f2ff; border-radius:10px; height:7px; margin:-16px 0 26px; }
.wfh-form-panel h2 { color:#087ff6; font-size:23px; margin:0 0 22px; text-transform:uppercase; }
.wfh-field label { color:#263746; font-size:15px; font-weight:700; }
.wfh-field input,.wfh-field textarea,.wfh-field select { background:#fff; border:1px solid #cfd8df; border-radius:8px; box-sizing:border-box; font-size:16px; width:100%; }
.wfh-form-panel .wfh-btn { border-radius:8px; font-size:15px; font-weight:800; padding:13px 22px; }
.wfh-task-panel .wfh-btn { border-radius:8px; font-size:15px; font-weight:800; padding:13px 22px; }
@media (max-width:760px) { .wfh-task-layout { grid-template-columns:1fr; } .wfh-task-panel,.wfh-form-panel { border-radius:14px; padding:25px 21px; } .wfh-task-panel h1 { font-size:22px; } }









/* AFTER HEADER 3JOBCOLUMN */
.columnTOP {
	flex: 1;
	margin: 0px;
	padding: 5px;
	background-color: #4D767A;
	border-radius: 0px;
	margin: 5px 0;  
}




.wrapper {
  padding: 0px;
  width: 95%;
  margin: 10px auto;
}

.columns {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 20px 0;
}

.column {
	flex: 1;
	margin: 10px;
	padding: 30px;
	background-color: #FFFFFF;
	border-radius: 0px;
}
.column:first-child {
	margin-left: 0px;
}
.column:last-child {
  margin-right: 0;
}


@media screen and (max-width: 980px) {
  .columns .column {
    margin-bottom: 5px;
    flex-basis: 40%;
  }
  .columns .column:nth-last-child(2) {
    margin-right: 0;
  }
  .columns .column:last-child {
    flex-basis: 100%;
    margin: 0;
  }
}
@media screen and (max-width: 680px) {
  .columns .column {
    flex-basis: 100%;
    margin: 0 0 5px 0;
  }
}







/* Grey-column layout. The previous version was incomplete, which prevented
   browsers from applying the button and form styles that follow it. */
.columnsGREY {
  background-color: #ecf1f5;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 20px 0;
}
.columnGREY {
  background-color: #ecf1f5;
  border-radius: 0;
  flex: 1;
  margin: 10px;
  padding: 30px;
}
.columnGREY:first-child { margin-left: 0; }
.columnGREY:last-child { margin-right: 0; }
@media screen and (max-width: 980px) {
  .columnsGREY .columnGREY { flex-basis: 40%; margin-bottom: 5px; }
  .columnsGREY .columnGREY:nth-last-child(2) { margin-right: 0; }
  .columnsGREY .columnGREY:last-child { flex-basis: 100%; margin: 0; }
}
@media screen and (max-width: 680px) {
  .columnsGREY .columnGREY { flex-basis: 100%; margin: 0 0 5px; }
}







/* ORANGE-columns */


.columnsORG {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 20px 0;
}

.columnORG {
	flex: 1;
	margin: 10px;
	padding: 30px;
	background-color: #ffd500;
	border-radius: 0px;  
}
.columnORG:first-child {
  margin-left: 0;
}
.columnORG:last-child {
  margin-right: 0;
}


@media screen and (max-width: 980px) {
  .columnsORG .columnORG {
    margin-bottom: 5px;
    flex-basis: 40%;
  }
  .columnsORG .columnORG:nth-last-child(2) {
    margin-right: 0;
  }
  .columnsORG .columnORG:last-child {
    flex-basis: 100%;
    margin: 0;
  }
}
@media screen and (max-width: 680px) {
  .columnsORG .columnORG {
    flex-basis: 100%;
    margin: 0 0 5px 0;
  }
}



















a.btnthree { padding: 15px 1px 3px 1px; font-family: Arial;color: #ffffff;font-size: 14px;text-align:center;background: #2196f3;display: inline-block;width:260px;height:35px;text-decoration: none;}
a.btnthree:hover {padding: 15px 1px 3px 1px;background: #5bb7ff;color: #000000;text-decoration: none;text-align:center;}
a.btnthree:active {padding: 15px 1px 3px 1px;background: #123754;color: #ffffff;text-decoration: none;text-align:center;}

a.btnthirdLONG-GREEN { padding: 20px 1px 1px 1px; font-family: Arial;color: #000000;font-size: 14px;text-align:center;background: #98e835;display: inline-block;width:100%;height:30px;text-decoration: none;}
a.btnthirdLONG-GREEN:hover {padding: 20px 1px 1px 1px;background: #78cf0c;color: #000000;text-decoration: none;text-align:center;}
a.btnthirdLONG-GREEN:active {padding: 20px 1px 1px 1px;background: #78cf0c;color: #000000;text-decoration: none;text-align:center;}



a.btnthirdLONG-RED { padding: 20px 1px 1px 1px; font-family: Arial;color: #ffffff;font-size: 14px;text-align:center;background: #ff174d;display: inline-block;width:100%;height:30px;text-decoration: none;}
a.btnthirdLONG-RED:hover {padding: 20px 1px 1px 1px;background: #ff475d;color: #000000;text-decoration: none;text-align:center;}
a.btnthirdLONG-RED:active {padding: 20px 1px 1px 1px;background: #ff475d;color: #000000;text-decoration: none;text-align:center;}



a.btnthirdLONG-GREY { padding: 20px 1px 1px 1px; font-family: Arial;color: #000000;font-size: 14px;text-align:center;background: #d6d6d6;display: inline-block;width:100%;height:30px;text-decoration: none;}
a.btnthirdLONG-GREY:hover {padding: 20px 1px 1px 1px;background: #b8b6b6;color: #000000;text-decoration: none;text-align:center;}
a.btnthirdLONG-GREY:active {padding: 20px 1px 1px 1px;background: #b8b6b6;color: #000000;text-decoration: none;text-align:center;}




/*form styles*/
#msform2 {
	width: 340px;
	margin: 0px auto;
	text-align: center;
	position: relative;
}
#msform2 fieldset {
	background: white;
	border: 0 none;
	border-radius: 3px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
	padding: 10px 15px;
	box-sizing: border-box;
	width: 95%;
	/*stacking fieldsets above each other*/
	position: relative;
}
/*Hide all except first fieldset*/
#msform2 fieldset:not(:first-of-type) {
	display: none;
}
/*inputs*/
#msform2 input, #msform2 textarea {
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 5px;
	width: 100%;
	box-sizing: border-box;
	font-family: montserrat;
	color: #2C3E50;
	font-size: 12px;
}
/*buttons*/
#msform2 .action-button {
	width: 145px;
	background: #27AE60;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 7px 5px;
	margin: 7px 5px;
}
#msform2 .action-button:hover, #msform2 .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
}

/* Main-site visual language for every active client-facing screen.
   This final layer intentionally changes presentation only; the legacy views,
   forms, and application routes keep their existing markup and behaviour. */
:root {
  --hb-main-orange: #ff8a00;
  --hb-main-orange-dark: #d96d00;
  --hb-main-blue: #2196f3;
  --hb-main-blue-dark: #123754;
  --hb-main-teal: #4d767a;
  --hb-main-yellow: #ffd500;
  --hb-main-surface: #ffffff;
  --hb-main-soft: #f3f7fa;
  --hb-main-border: #d6e1e8;
}

body,
body.hb-portal {
  background: var(--hb-main-soft) !important;
  color: #263746;
}

.hb-legacy-header {
  border-bottom: 4px solid var(--hb-main-orange);
  box-shadow: 0 3px 12px rgba(18, 55, 84, .13);
}
.hb-legacy-header .hb-nav a { color: var(--hb-main-blue-dark); }
.hb-legacy-header .hb-nav a:hover { color: var(--hb-main-orange-dark); }
.hb-legacy-header .hb-nav .hb-nav-profile,
.hb-legacy-header .hb-nav .hb-nav-signup {
  background: var(--hb-main-blue);
  border-radius: 20px;
  box-shadow: 0 2px 0 rgba(18, 55, 84, .15);
}
.hb-legacy-header .hb-nav .hb-nav-signup { background: var(--hb-main-orange); }
.hb-legacy-header .hb-nav .hb-nav-profile:hover { background: var(--hb-main-blue-dark); color: #fff; }
.hb-legacy-header .hb-nav .hb-nav-signup:hover { background: var(--hb-main-orange-dark); color: #fff; }
.hb-legacy-header .hb-nav-toggle-label { color: var(--hb-main-blue-dark); }

.wfh-page-title h1,
.wfh-section-title,
.container .section-title {
  color: var(--hb-main-blue-dark);
}
.wfh-page-title h1::after,
.container .section-title::after {
  background: var(--hb-main-orange);
  content: '';
  display: block;
  height: 4px;
  margin: 13px auto 0;
  width: 72px;
}
.wfh-section-title { border-bottom-color: var(--hb-main-orange); }

.wfh-card,
.wfh-profile-box,
.wfh-task-card,
.wfh-task-panel,
.wfh-form-panel,
.container .form-card,
.container .info-card,
.data-entry-card,
.wfh-job-row,
.wfh-task-button {
  background: var(--hb-main-surface);
  border-color: var(--hb-main-border);
  box-shadow: 0 7px 18px rgba(18, 55, 84, .08);
}
.wfh-card,
.wfh-profile-box,
.wfh-task-panel,
.wfh-form-panel,
.container .form-card,
.container .info-card,
.data-entry-card { border-radius: 10px; }
.wfh-form-top,
.container .form-card-header { background: var(--hb-main-orange) !important; }
.wfh-task-panel,
.wfh-form-panel { border-top-color: var(--hb-main-orange); }
.wfh-task-panel h1,
.wfh-form-panel h2,
.data-entry-step,
.data-entry-card h2 { color: var(--hb-main-blue-dark); }

.wfh-btn,
.submit-btn,
.container .submit-btn,
.wfh-job-start,
.wfh-task-button:hover {
  background: var(--hb-main-blue) !important;
  border-color: var(--hb-main-blue);
  color: #fff !important;
}
.wfh-btn:hover,
.submit-btn:hover,
.container .submit-btn:hover,
.wfh-job-start:hover {
  background: var(--hb-main-blue-dark) !important;
  border-color: var(--hb-main-blue-dark);
  color: #fff !important;
}
.wfh-btn.wfh-btn-danger,
.wfh-btn-coming-soon,
.data-entry-coming-soon button { background: var(--hb-main-orange) !important; }
.wfh-btn.wfh-btn-danger:hover,
.wfh-btn-coming-soon:hover,
.data-entry-coming-soon button:hover { background: var(--hb-main-orange-dark) !important; }
.wfh-task-button i,
.wfh-task-group-title::before,
.wfh-task-icon i { color: var(--hb-main-blue); }
.wfh-task-group-title { color: var(--hb-main-blue-dark); }
.wfh-task-button:hover i { background: #fff; color: var(--hb-main-orange); }

.wfh-field input,
.wfh-field textarea,
.wfh-field select,
.container .form-card input,
.container .form-card select,
.container .form-card textarea,
#msform2 input,
#msform2 textarea {
  border-color: #b9cbd7;
  border-radius: 6px;
}
.wfh-field input:focus,
.wfh-field textarea:focus,
.wfh-field select:focus,
.container .form-card input:focus,
.container .form-card select:focus,
.container .form-card textarea:focus {
  border-color: var(--hb-main-blue);
  box-shadow: 0 0 0 3px rgba(33, 150, 243, .16);
  outline: 0;
}
.wfh-message,
.data-entry-benefits,
.data-entry-coming-soon {
  border-left-color: var(--hb-main-orange);
}

.hb-legacy-footer,
.wfh-footer { background: var(--hb-main-teal); }
.hb-legacy-footer h3,
.wfh-footer h3 { color: var(--hb-main-yellow); }
.hb-legacy-footer .hb-footer-signup { color: var(--hb-main-yellow); }
.hb-legacy-footer a:hover,
.wfh-footer a:hover { color: var(--hb-main-yellow); }
.hb-legacy-footer { border-top: 5px solid var(--hb-main-orange); }

/* Legacy active utility pages still use fixed-width tables. Keep them usable
   and visually coherent without altering their original content or actions. */
body > center > table {
  background: var(--hb-main-surface);
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(18, 55, 84, .12);
  margin: 28px auto;
  max-width: calc(100% - 28px);
}
body > center > table td[bgcolor="#123754"] { background-color: var(--hb-main-teal) !important; }
body > center > table td[bgcolor="#ff8a00"] { background-color: var(--hb-main-orange) !important; }
body > center > table td[bgcolor="#FFFFFF"] { background-color: var(--hb-main-surface) !important; }

@media (max-width: 800px) {
  .hb-legacy-header .hb-nav { background: #fff; }
  .hb-legacy-header .hb-nav a { border-top-color: #e5edf2; }
  .hb-legacy-header .hb-nav .hb-nav-btn { border-radius: 6px; }
  body > center > table { margin: 14px auto; }
}

/*
 * clients-old visual compatibility layer
 * --------------------------------------
 * The current portal keeps its new controllers, category count, fields and
 * database schema.  These rules reproduce the established clients-old layout
 * language: teal site canvas, centred white work area, blue navigation bands,
 * orange task sections and square status controls.
 */
body,
body.hb-portal {
  background: #4d767a !important;
  color: #575757;
  font: 81.3% Arial, Helvetica, sans-serif;
  padding: 0;
  text-align: center;
}
body a { color: #00c; }
body a:hover { color: #000; }

.hb-shell,
.wfh-main,
.wfh-auth-wrap,
.container {
  box-sizing: border-box;
  max-width: none;
}
.hb-shell { width: 90%; }
.wfh-main,
.wfh-auth-wrap,
.container {
  background: #fff;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
.wfh-main { padding: 24px 26px 36px; }
.wfh-auth-wrap { margin-bottom: 30px; padding: 24px 30px 34px; width: 90%; }
.container { padding: 26px 30px 42px; width: 90%; }

.hb-legacy-header {
  background: #fff;
  border: 0;
  border-top: 10px solid #4d767a;
  box-shadow: none;
  margin: 0 auto;
  max-width: none;
  width: 90%;
}
.hb-legacy-header .hb-shell {
  align-items: stretch;
  display: grid;
  gap: 0;
  grid-template-columns: 255px 1fr;
  min-height: 0;
}
.hb-legacy-header .hb-logo {
  align-items: center;
  background: #fff;
  justify-content: center;
  margin: 0;
  min-height: 82px;
  padding: 10px 16px;
}
.hb-legacy-header .hb-logo img { max-height: 58px; max-width: 220px; }
.hb-legacy-header .hb-nav {
  align-content: center;
  align-items: center;
  background: #2196f3;
  gap: 0;
  justify-content: center;
  padding: 8px;
}
.hb-legacy-header .hb-nav a,
.hb-legacy-header .hb-nav .hb-nav-btn {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.15;
  margin: 0;
  padding: 12px 11px;
  text-transform: uppercase;
}
.hb-legacy-header .hb-nav a:hover,
.hb-legacy-header .hb-nav .hb-nav-btn:hover {
  background: #123754;
  color: #fff;
}
.hb-legacy-header .hb-nav .hb-nav-signup { background: #ff8a00; }
.hb-legacy-header .hb-nav .hb-nav-signup:hover { background: #d66e00; }
.hb-care-notice {
  background: #fff;
  border: 0;
  margin: 0 auto;
  max-width: none;
  width: 90%;
}
.hb-care-notice-inner { border-top: 10px solid #4d767a; justify-content: center; min-height: 0; padding: 12px 18px; }
.hb-care-notice p { color: #575757; font-size: 12px; }
.hb-care-notice p strong,
.hb-care-notice i { color: #123754; }
.hb-care-notice a { background: #2196f3; border-radius: 0; }

.wfh-auth-logo {
  background: #fff;
  margin: 0 auto;
  max-width: none;
  padding: 24px 20px 8px;
  width: 90%;
}
.wfh-auth-logo img { max-height: 70px; max-width: 280px; }
.wfh-page-title,
.container .section-title {
  background: #ff8a00;
  border: 0;
  color: #000;
  margin: 0 0 24px;
  padding: 20px 18px;
}
.wfh-page-title h1,
.container .section-title,
.wfh-section-title {
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 21px;
  font-weight: bold;
  text-transform: uppercase;
}
.wfh-page-title h1::after,
.container .section-title::after { display: none; }
.wfh-page-title p { color: #222; font-size: 14px; margin: 10px auto 0; }
.wfh-section-title { border-bottom: 0; display: block; margin: 0 0 18px; padding: 14px; text-align: center; }

.wfh-auth-grid,
.wfh-profile-row,
.wfh-task-layout,
.container .top-split-grid {
  gap: 12px;
}
.wfh-card,
.wfh-profile-box,
.wfh-task-card,
.wfh-task-panel,
.wfh-form-panel,
.container .form-card,
.container .info-card,
.data-entry-card,
.wfh-job-row,
.wfh-task-button {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.wfh-card,
.wfh-profile-box,
.wfh-task-card,
.wfh-task-panel,
.container .form-card,
.container .info-card,
.data-entry-card { background: #ecf1f5; }
.wfh-form-panel { background: #fff; border: 10px solid #ff8a00; }
.wfh-form-top,
.container .form-card-header { background: #2196f3 !important; border-radius: 0; height: 12px; margin: -18px -18px 22px; min-height: 12px; }
.container .form-card-header { margin: 0; }
.wfh-form-panel h2,
.wfh-task-panel h1,
.data-entry-step,
.data-entry-card h2 { color: #000; text-align: center; }
.wfh-profile-box p,
.wfh-task-panel p,
.wfh-card p { color: #575757; text-align: left; }
.wfh-summary-box { background: #123754; border-radius: 0; }

.wfh-btn,
.submit-btn,
.container .submit-btn,
.wfh-job-start,
.wfh-task-button:hover {
  background: #2196f3 !important;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: #fff !important;
  font-weight: bold;
  text-transform: uppercase;
}
.wfh-btn:hover,
.submit-btn:hover,
.container .submit-btn:hover,
.wfh-job-start:hover { background: #123754 !important; }
.wfh-btn.wfh-btn-danger,
.wfh-btn-coming-soon,
.data-entry-coming-soon button { background: #ff8a00 !important; }
.wfh-btn.wfh-btn-danger:hover,
.wfh-btn-coming-soon:hover,
.data-entry-coming-soon button:hover { background: #d66e00 !important; }

.wfh-task-groups { background: #fff; padding: 0; }
.wfh-task-group-title {
  background: #ff8a00;
  color: #000;
  display: block;
  font-size: 17px;
  font-weight: bold;
  margin: 20px 0 8px;
  padding: 13px 16px;
  text-align: left;
}
.wfh-task-group-title::before { display: none; }
.wfh-task-group { gap: 7px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: 20px; }
.wfh-task-button {
  background: #ff9900;
  border-radius: 0;
  box-shadow: none;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  height: auto;
  justify-content: center;
  min-height: 64px;
  padding: 10px;
  text-align: center;
  white-space: normal;
}
.wfh-task-button i { background: transparent !important; color: #fff !important; flex: 0 0 auto; height: auto; width: auto; }
.wfh-task-button:hover { background: #2196f3 !important; transform: none; }

.wfh-task-panel { border-top: 0; }
.wfh-task-icon { background: #2196f3; margin: -34px -34px 20px; padding: 14px; text-align: center; }
.wfh-task-icon i { background: transparent; color: #fff; height: auto; width: auto; }
.wfh-stats { background: #fff; border: 0; border-left: 6px solid #ff8a00; border-radius: 0; }
.wfh-field label { color: #000; }
.wfh-field input,
.wfh-field textarea,
.wfh-field select,
.container .form-card input,
.container .form-card select,
.container .form-card textarea,
#msform2 input,
#msform2 textarea { border: 1px solid #ccc; border-radius: 3px; }
.wfh-message { background: #fff4df; border-left-color: #ff8a00; }

.data-entry-card-heading { background: #ff8a00; border: 0; }
.data-entry-card-heading-blue { background: #2196f3; }
.data-entry-card-heading-green { background: #51af60; }
.data-entry-card-heading h2,
.data-entry-card-heading-blue h2,
.data-entry-card-heading-green h2 { color: #fff; }
.data-entry-step { color: #000; }

.hb-legacy-footer,
.wfh-footer {
  background: #123754;
  border-top: 0;
  border-radius: 0;
  margin: 0 auto;
  max-width: 1040px;
}
.hb-legacy-footer h3,
.wfh-footer h3 { color: #fff; }
.hb-legacy-footer .hb-footer-signup { color: #fff; }
.hb-legacy-footer a:hover,
.wfh-footer a:hover { color: #fff; text-decoration: underline; }

body > center > table {
  border-radius: 0;
  box-shadow: none;
  max-width: 740px;
}
body > center > table td[bgcolor="#123754"] { background-color: #123754 !important; }
body > center > table td[bgcolor="#ff8a00"] { background-color: #ff8a00 !important; }

@media (max-width: 850px) {
  body,
  body.hb-portal { padding: 0; }
  .hb-legacy-header .hb-shell { display: flex; min-height: 0; }
  .hb-legacy-header .hb-logo { min-height: 70px; }
  .hb-legacy-header .hb-nav { width: 100%; }
  .hb-legacy-header .hb-nav a,
  .hb-legacy-header .hb-nav .hb-nav-btn { padding: 11px 12px; text-align: left; }
  .wfh-main,
  .container { padding: 18px 14px 28px; }
  .wfh-task-group { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .wfh-auth-wrap { padding: 16px 12px 24px; }
  .wfh-task-group { grid-template-columns: 1fr; }
  .wfh-task-button { min-height: 50px; }
  .wfh-task-icon { margin-left: -21px; margin-right: -21px; }
}

/* User profile: retain the old dashboard's reading order.  New task links are
   intentionally placed after the legacy yellow information panel. */
.wfh-main:has(.wfh-task-groups) { display: flex; flex-direction: column; }
.wfh-main:has(.wfh-task-groups) > .wfh-section-title { order: 90; }
.wfh-main:has(.wfh-task-groups) > .wfh-task-groups { order: 91; }

.wfh-main:has(.wfh-task-groups) .wfh-page-title {
  background: #fff;
  border-bottom: 10px solid #4d767a;
  color: #000;
  padding: 14px 18px;
}
.wfh-main:has(.wfh-task-groups) .wfh-page-title h1 { font-size: 18px; margin: 0; }
.wfh-main:has(.wfh-task-groups) .wfh-profile-row {
  background: #fff;
  border-top: 50px solid #ff9900;
  gap: 10px;
  grid-template-columns: 310px 1fr;
  padding: 10px;
}
.wfh-main:has(.wfh-task-groups) .wfh-profile-box {
  background: #ecf1f5;
  min-height: 240px;
  padding: 22px;
}
.wfh-main:has(.wfh-task-groups) .wfh-profile-box i { color: #2196f3; font-size: 54px; }
.wfh-main:has(.wfh-task-groups) .wfh-profile-box p { border-bottom: 1px solid #d4dce0; font-size: 13px; margin: 10px 0; padding-bottom: 9px; }
.wfh-main:has(.wfh-task-groups) .data-entry-instructions {
  background: #fff;
  border: 0;
  border-left: 10px solid #2196f3;
  border-radius: 0;
  box-shadow: none;
  padding: 18px;
}
.wfh-main:has(.wfh-task-groups) .data-entry-instructions > p { color: #123754; font-size: 15px; text-align: center; }
.wfh-main:has(.wfh-task-groups) .columns { background: #fff; margin: 0; padding: 10px; }
.wfh-main:has(.wfh-task-groups) .column { border: 0; border-radius: 0; box-shadow: none; margin: 5px; }
.wfh-main:has(.wfh-task-groups) .columnORG {
  background: #ffd500;
  border: 10px solid #ff8a00;
  border-radius: 0;
  color: #000;
  margin: 14px 5px 10px;
  padding: 26px 34px;
}
.wfh-main:has(.wfh-task-groups) .columnORG h3 { color: #000; font-size: 18px; }
.wfh-main:has(.wfh-task-groups) .columnORG p { color: #000; font-size: 14px; }

/* Expanded categories use coloured, readable tiles; no orange task buttons. */
.wfh-main:has(.wfh-task-groups) .wfh-section-title {
  background: #123754;
  color: #fff;
  font-size: 18px;
  margin: 18px 0 10px;
  padding: 15px 18px;
  text-align: left;
}
.wfh-main:has(.wfh-task-groups) .wfh-task-groups { background: #ecf1f5; padding: 16px; }
.wfh-main:has(.wfh-task-groups) .wfh-task-group-title {
  background: #4d767a;
  color: #fff;
  font-size: 15px;
  margin: 0 0 9px;
  padding: 12px 16px;
}
.wfh-main:has(.wfh-task-groups) .wfh-task-group { gap: 10px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.wfh-main:has(.wfh-task-groups) .wfh-task-button {
  align-items: center;
  background: linear-gradient(135deg, #2196f3, #1675c1);
  border: 0;
  border-bottom: 4px solid #0d5b9b;
  border-radius: 5px;
  box-shadow: 0 3px 7px rgba(18, 55, 84, .2);
  color: #fff;
  font-size: 13px;
  line-height: 1.25;
  min-height: 76px;
  padding: 12px 10px;
}
.wfh-main:has(.wfh-task-groups) .wfh-task-button i { color: #fff !important; font-size: 19px; }
.wfh-main:has(.wfh-task-groups) .wfh-task-group:nth-of-type(2) .wfh-task-button { background: linear-gradient(135deg, #51af60, #388644); border-bottom-color: #296d34; }
.wfh-main:has(.wfh-task-groups) .wfh-task-group:nth-of-type(3) .wfh-task-button { background: linear-gradient(135deg, #756cb6, #544b95); border-bottom-color: #3e367a; }
.wfh-main:has(.wfh-task-groups) .wfh-task-group:nth-of-type(4) .wfh-task-button { background: linear-gradient(135deg, #d75d71, #aa3a50); border-bottom-color: #852a3c; }
.wfh-main:has(.wfh-task-groups) .wfh-task-button:hover {
  background: #123754 !important;
  border-bottom-color: #081d31;
  box-shadow: 0 1px 3px rgba(18, 55, 84, .25);
  transform: translateY(2px);
}
@media (max-width: 850px) {
  .wfh-main:has(.wfh-task-groups) .wfh-profile-row { grid-template-columns: 1fr; }
  .wfh-main:has(.wfh-task-groups) .wfh-task-group { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .wfh-main:has(.wfh-task-groups) .wfh-task-group { grid-template-columns: 1fr; }
  .wfh-main:has(.wfh-task-groups) .columnORG { margin-left: 0; margin-right: 0; padding: 18px; }
}

/* Final profile task menu and footer sizing. */
.wfh-main:has(.wfh-task-groups) .wfh-task-button,
.wfh-main:has(.wfh-task-groups) .wfh-task-group:nth-of-type(2) .wfh-task-button,
.wfh-main:has(.wfh-task-groups) .wfh-task-group:nth-of-type(3) .wfh-task-button,
.wfh-main:has(.wfh-task-groups) .wfh-task-group:nth-of-type(4) .wfh-task-button {
  background: #2196f3;
  border: 0;
  border-radius: 3px;
  box-shadow: none;
  color: #fff;
  min-height: 54px;
}
.wfh-main:has(.wfh-task-groups) .wfh-task-button:hover {
  background: #123754 !important;
  box-shadow: none;
  transform: none;
}
.wfh-main:has(.wfh-task-groups) .wfh-task-button i { font-size: 16px; }

.hb-legacy-footer {
  box-sizing: border-box;
  max-width: none;
  width: 90%;
}
.hb-legacy-footer .hb-shell { box-sizing: border-box; width: 100%; }
.hb-footer-tasks {
  border-top: 1px solid rgba(255, 255, 255, .22);
  margin: 0 28px;
  padding: 22px 0 26px;
}
.hb-footer-tasks h3 {
  color: #fff;
  font-size: 14px;
  margin: 0 0 13px;
  text-align: left;
  text-transform: uppercase;
}
.hb-footer-task-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
}
.hb-legacy-footer .hb-footer-task-links a {
  color: #dce8ee;
  display: inline;
  font-size: 12px;
  line-height: 1.5;
}
.hb-legacy-footer .hb-footer-task-links a:hover { color: #fff; }
@media (max-width: 850px) {
  .hb-legacy-footer { width: 100%; }
  .hb-footer-tasks { margin: 0 18px; }
}

/* Full clients-old profile dashboard content, fed by the current client data. */
.wfh-main:has(.legacy-completed-work) .legacy-profile-welcome {
  align-items: center;
  background: #ff9900;
  color: #000;
  display: flex;
  font-size: 16px;
  justify-content: space-between;
  margin: 12px 0 0;
  min-height: 50px;
  padding: 0 18px;
}
.wfh-main:has(.legacy-completed-work) .legacy-profile-welcome a {
  background: #2196f3;
  color: #fff;
  font-size: 13px;
  padding: 11px 16px;
  text-decoration: none;
}
.legacy-completed-work {
  background: #fff;
  padding: 18px 10px 30px;
}
.legacy-completed-work h2,
.legacy-profile-videos h2 {
  color: #000;
  font-size: 18px;
  margin: 10px 0 16px;
  text-align: center;
  text-transform: none;
}
.legacy-work-table-wrap { overflow-x: auto; }
.legacy-completed-work table { border-collapse: separate; border-spacing: 8px; min-width: 720px; width: 100%; }
.legacy-completed-work th,
.legacy-completed-work td { font-size: 13px; padding: 16px 13px; text-align: left; }
.legacy-completed-work thead th { background: #ff9900; color: #fff; text-align: center; }
.legacy-completed-work tbody td,
.legacy-completed-work tfoot th { background: #ecf1f5; color: #333; }
.legacy-completed-work tfoot th:last-child { background: #51af60; color: #000; }
.legacy-withdraw-actions { display: flex; gap: 14px; justify-content: center; margin: 20px 0 0; }
.legacy-withdraw-actions .btnthree { background: #2196f3; color: #fff; font-size: 13px; height: auto; padding: 15px 25px; width: auto; }
.legacy-withdraw-actions .btnthree:hover { background: #123754; color: #fff; }

.legacy-profile-videos { background: #fff; padding: 18px 20px 34px; }
.legacy-video-grid { display: grid; gap: 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.legacy-video-grid iframe { aspect-ratio: 16 / 9; border: 0; display: block; height: auto; width: 100%; }
.legacy-profile-videos .wfh-ad { margin-bottom: 0; }
@media (max-width: 700px) {
  .wfh-main:has(.legacy-completed-work) .legacy-profile-welcome { align-items: stretch; flex-direction: column; gap: 10px; padding: 14px; text-align: center; }
  .legacy-withdraw-actions { align-items: stretch; flex-direction: column; }
  .legacy-video-grid { grid-template-columns: 1fr; }
}

/* The original profile is a collection of separate white columns over the
   teal page background. Do not join the columns into one continuous panel. */
.wfh-main:has(.legacy-completed-work) {
  background: transparent;
  gap: 0;
  padding: 0;
}
.wfh-main:has(.legacy-completed-work) > .wfh-page-title,
.wfh-main:has(.legacy-completed-work) > .wfh-profile-row,
.wfh-main:has(.legacy-completed-work) > .legacy-profile-welcome,
.wfh-main:has(.legacy-completed-work) > .legacy-completed-work,
.wfh-main:has(.legacy-completed-work) > .wfh-reset-box,
.wfh-main:has(.legacy-completed-work) > .legacy-profile-videos,
.wfh-main:has(.legacy-completed-work) > .wfh-section-title,
.wfh-main:has(.legacy-completed-work) > .wfh-task-groups {
  box-sizing: border-box;
  margin-bottom: 18px;
}
.wfh-main:has(.legacy-completed-work) .columns {
  align-items: stretch;
  background: transparent;
  gap: 18px;
  justify-content: center;
  margin: 0 0 18px;
  padding: 0;
}
.wfh-main:has(.legacy-completed-work) .columns .column {
  background: #fff;
  box-sizing: border-box;
  flex: 1 1 calc(50% - 9px);
  margin: 0;
  min-width: 0;
  padding: 30px;
}
.wfh-main:has(.legacy-completed-work) .columns .columnORG {
  box-sizing: border-box;
  flex: 1 1 100%;
  margin: 0;
}
.wfh-main:has(.legacy-completed-work) .wfh-profile-row {
  gap: 18px;
  padding: 0;
}
.wfh-main:has(.legacy-completed-work) .wfh-profile-box,
.wfh-main:has(.legacy-completed-work) .data-entry-instructions {
  box-sizing: border-box;
}
.wfh-main:has(.legacy-completed-work) .wfh-reset-box {
  background: #fff;
  padding: 20px;
}
.wfh-main:has(.legacy-completed-work) .legacy-completed-work,
.wfh-main:has(.legacy-completed-work) .legacy-profile-videos,
.wfh-main:has(.legacy-completed-work) .wfh-task-groups { border: 0; }
@media (max-width: 850px) {
  .wfh-main:has(.legacy-completed-work) .columns { gap: 10px; }
  .wfh-main:has(.legacy-completed-work) .columns .column { flex-basis: 100%; }
}

/* Legacy header uses separate logo and navigation blocks over the teal page
   background, matching the profile's original column spacing. */
.hb-legacy-header {
  background: transparent;
  border: 0;
  margin: 0 auto 18px;
  padding: 0;
}
.hb-legacy-header .hb-shell {
  background: transparent;
  display: grid;
  gap: 18px;
  grid-template-columns: 300px minmax(0, 1fr);
  width: 100%;
}
.hb-legacy-header .hb-logo {
  background: #fff;
  box-sizing: border-box;
  min-height: 92px;
  padding: 12px 18px;
}
.hb-legacy-header .hb-logo img {
  max-height: 70px;
  max-width: 260px;
}
.hb-legacy-header .hb-nav {
  align-content: center;
  background: #fff;
  box-sizing: border-box;
  gap: 8px;
  justify-content: center;
  min-height: 92px;
  padding: 12px;
}
.hb-legacy-header .hb-nav a,
.hb-legacy-header .hb-nav .hb-nav-btn,
.hb-legacy-header .hb-nav .hb-nav-signup {
  background: #2196f3;
  border-radius: 0;
  box-sizing: border-box;
  color: #fff;
  font-size: 12px;
  min-width: 76px;
  padding: 12px 10px;
  text-align: center;
}
.hb-legacy-header .hb-nav a:hover,
.hb-legacy-header .hb-nav .hb-nav-btn:hover,
.hb-legacy-header .hb-nav .hb-nav-signup:hover {
  background: #123754;
  color: #fff;
}
.hb-care-notice {
  background: #fff;
  box-sizing: border-box;
  margin: 0 auto 18px;
  padding: 0;
}
.hb-care-notice-inner { border: 0; min-height: 0; padding: 16px 20px; }
@media (max-width: 850px) {
  .hb-legacy-header { margin-bottom: 10px; width: 100%; }
  .hb-legacy-header .hb-shell { display: flex; gap: 0; width: 100%; }
  .hb-legacy-header .hb-logo { min-height: 70px; width: 100%; }
  .hb-legacy-header .hb-nav { gap: 0; min-height: 0; padding: 0; }
  .hb-legacy-header .hb-nav a,
  .hb-legacy-header .hb-nav .hb-nav-btn { border-bottom: 1px solid rgba(255,255,255,.25); min-width: 0; }
  .hb-care-notice { margin-bottom: 10px; width: 100%; }
}

/* Transparent two-row header: logo + advertisement first, navigation below. */
.hb-legacy-header,
.hb-legacy-header .hb-shell,
.hb-legacy-header .hb-header-top,
.hb-legacy-header .hb-logo,
.hb-legacy-header .hb-nav,
.hb-care-notice {
  background: transparent;
}
.hb-legacy-header .hb-shell {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
.hb-legacy-header .hb-header-top {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 300px minmax(0, 1fr);
  min-height: 90px;
}
.hb-legacy-header .hb-logo {
  min-height: 0;
  padding: 0;
}
.hb-legacy-header .hb-logo img { display: block; max-height: 80px; max-width: 300px; }
.hb-header-ad {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 90px;
  overflow: hidden;
  text-align: center;
}
.hb-header-ad .adsbygoogle { display: block; max-width: 100%; width: 728px; }
.hb-legacy-header .hb-nav {
  background: transparent;
  justify-content: flex-start;
  min-height: 0;
  padding: 0;
}
.hb-legacy-header .hb-nav a,
.hb-legacy-header .hb-nav .hb-nav-btn,
.hb-legacy-header .hb-nav .hb-nav-signup {
  background: #2196f3;
  margin: 0;
}
.hb-care-notice { border: 0; color: #fff; }
.hb-care-notice-inner { background: transparent; padding: 0 4px 12px; }
.hb-care-notice p,
.hb-care-notice p strong,
.hb-care-notice i { color: #fff; }
.hb-care-notice a { background: #2196f3; }
@media (max-width: 850px) {
  .hb-legacy-header .hb-shell { display: flex; gap: 10px; }
  .hb-legacy-header .hb-header-top { display: flex; gap: 0; grid-template-columns: none; width: 100%; }
  .hb-legacy-header .hb-logo { padding: 8px 0; }
  .hb-header-ad { display: none; }
  .hb-legacy-header .hb-nav { background: transparent; padding: 0; }
  .hb-care-notice-inner { padding: 0 14px 10px; }
}

/* Centre the desktop menu and keep the final task area aligned with the
   profile's 90% workspace without a white panel behind its buttons. */
@media (min-width: 851px) {
  .hb-legacy-header .hb-nav { justify-content: center; }
}
.hb-task-nav {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  width: 100%;
}
.hb-task-nav a {
  background: #2196f3;
  border-radius: 3px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  min-height: 42px;
  padding: 8px 5px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
.hb-task-nav a:hover { background: #123754; color: #fff; }
@media (max-width: 850px) {
  .hb-task-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); padding-bottom: 8px; }
  .hb-task-nav a { font-size: 10px; }
}
.wfh-main:has(.legacy-completed-work) > .wfh-section-title,
.wfh-main:has(.legacy-completed-work) > .wfh-task-groups {
  align-self: center;
  box-sizing: border-box;
  width: 100%;
}
.wfh-main:has(.legacy-completed-work) .wfh-task-groups,
.wfh-main:has(.legacy-completed-work) .wfh-task-group {
  background: transparent;
}
