/* HPD Hiring System -- shared frontend + admin styles */

:root {
	--hpdh-primary: #0F1E2E;
	--hpdh-secondary: #C6A23A;
}

/* ---------- Frontend (hidden pages) ---------- */
.hpdh-wrap {
	max-width: 900px;
	margin: 0 auto;
	padding: 20px 16px 60px;
	color: var(--hpdh-primary);
	background: var(--hpdh-form-bg, transparent);
	border-radius: var(--hpdh-form-radius, 0px);
}
.hpdh-title { font-size: 26px; font-weight: 800; margin: 0 0 6px; color: var(--hpdh-primary); }
.hpdh-subtitle { color: #6b7280; margin: 0 0 24px; }

.hpdh-box {
	background: #fff;
	border: 1px solid #eceef1;
	border-radius: 12px;
	padding: 18px 20px;
	margin-bottom: 16px;
	box-shadow: 0 2px 8px rgba(15,30,46,0.04);
}
.hpdh-box-success { border-color: color-mix(in srgb, #2F855A 30%, #eceef1); background: color-mix(in srgb, #2F855A 6%, white); }
.hpdh-box-error { border-color: color-mix(in srgb, #C53030 35%, #eceef1); background: color-mix(in srgb, #C53030 6%, white); }
.hpdh-box h3, .hpdh-box h4 { margin-top: 0; color: var(--hpdh-primary); }

.hpdh-btn {
	display: inline-block;
	background: var(--hpdh-btn-bg, var(--hpdh-secondary));
	color: var(--hpdh-btn-text, var(--hpdh-primary));
	font-weight: 700;
	padding: 11px 20px;
	border-radius: var(--hpdh-btn-radius, 8px);
	text-decoration: none;
	border: none;
	cursor: pointer;
	font-size: 14px;
}
.hpdh-btn:hover, .hpdh-btn:focus, .hpdh-btn:active {
	background: var(--hpdh-btn-hover-bg, var(--hpdh-primary)) !important;
	color: var(--hpdh-btn-hover-text, #fff) !important;
	filter: none !important;
	border-color: var(--hpdh-btn-hover-bg, var(--hpdh-primary)) !important;
	outline: none !important;
	box-shadow: none !important;
}
.hpdh-btn-outline { background: transparent; border: 1.5px solid var(--hpdh-primary); color: var(--hpdh-primary); }
.hpdh-btn-submit { display: block; width: 100%; text-align: center; font-size: 16px; padding: 14px; margin-top: 24px; }

/* Agility slots */
.hpdh-session { margin-bottom: 22px; }
.hpdh-session h4 { color: var(--hpdh-primary); margin-bottom: 10px; }
.hpdh-slots { display: flex; flex-wrap: wrap; gap: 8px; }
.hpdh-slot-form { display: inline-block; }
.hpdh-slot {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	border: 1.5px solid var(--hpdh-secondary);
	background: color-mix(in srgb, var(--hpdh-secondary) 8%, white);
	color: var(--hpdh-primary);
	border-radius: 10px;
	padding: 10px 16px;
	font-weight: 700;
	font-size: 13.5px;
	cursor: pointer;
}
.hpdh-slot:hover { background: color-mix(in srgb, var(--hpdh-secondary) 18%, white); }
.hpdh-slot span { font-size: 10.5px; font-weight: 600; color: #6b7280; }
.hpdh-slot-full { border-color: #e2e2e2; background: #f5f5f5; color: #b0b0b0; cursor: not-allowed; }
.hpdh-slot-full span { color: #b0b0b0; }

/* Large application form */
.hpdh-application .hpdh-section-title {
	margin: 30px 0 14px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--hpdh-secondary);
	color: var(--hpdh-primary);
	font-size: 19px;
}
.hpdh-row { display: flex; flex-wrap: wrap; gap: var(--hpdh-field-gap, 12px); margin-bottom: 4px; }
.hpdh-field { margin-bottom: var(--hpdh-field-gap, 12px); }
.hpdh-field label { display: block; font-size: 13px; font-weight: 600; color: var(--hpdh-label-color, #444); margin-bottom: 6px; line-height: 1.4; }
.hpdh-field input[type="text"],
.hpdh-field input[type="date"],
.hpdh-field input[type="time"],
.hpdh-field input[type="email"],
.hpdh-field input[type="tel"],
.hpdh-field select,
.hpdh-field textarea {
	width: 100%;
	padding: 9px 11px;
	border: 1px solid var(--hpdh-field-border, #d8d8d8);
	border-radius: var(--hpdh-field-radius, 7px);
	font-size: 14px;
	box-sizing: border-box;
	background: var(--hpdh-field-bg, #fff);
	color: var(--hpdh-field-text, inherit);
}
.hpdh-field textarea { resize: vertical; }

.hpdh-w-full { flex: 1 1 100%; }
.hpdh-w-half { flex: 1 1 calc(50% - 6px); }
.hpdh-w-third { flex: 1 1 calc(33.33% - 8px); }
.hpdh-w-quarter { flex: 1 1 calc(25% - 9px); }
.hpdh-w-fifth { flex: 1 1 calc(20% - 10px); }
.hpdh-w-eighth { flex: 1 1 calc(12.5% - 10px); }

.hpdh-yesno { flex: 1 1 100%; }
.hpdh-radio-row { display: flex; gap: 18px; }
.hpdh-radio { font-weight: 400 !important; display: flex; align-items: center; gap: 6px; }
.hpdh-checkbox-row label { font-weight: 400; display: flex; align-items: flex-start; gap: 8px; }
.hpdh-checkbox-single { margin-bottom: 14px !important; }
.hpdh-checkbox-single label { font-weight: 500 !important; display: flex; align-items: center; gap: 8px; }
.hpdh-checkbox-single input[type="checkbox"] { width: auto; }

.hpdh-subblock {
	background: #fafbfc;
	border: 1px solid #eee;
	border-radius: 10px;
	padding: 14px 16px;
	margin-bottom: 14px;
}
.hpdh-subblock h4 { margin: 0 0 10px; color: var(--hpdh-primary); }

/* Conditional "reveal on value" fields -- purely functional (show/hide),
   no special box/border treatment, so a revealed field looks exactly like
   any other field on the form. */
.hpdh-conditional {
	display: none;
}
.hpdh-conditional.hpdh-conditional-visible { display: block; }

/* Repeaters (add/remove rows) */
.hpdh-repeater { margin-bottom: 16px; }
.hpdh-repeater-rows { display: flex; flex-direction: column; gap: 10px; margin-bottom: 10px; }
.hpdh-repeater-row {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding: 14px 44px 4px 14px;
	background: #fafbfc;
	border: 1px solid #eee;
	border-radius: 10px;
}
.hpdh-repeater-remove {
	position: absolute;
	top: 8px;
	right: 8px;
	appearance: none;
	border: none;
	background: transparent !important;
	color: #9aa0a8;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	padding: 4px 6px;
	box-shadow: none !important;
}
.hpdh-repeater-remove:hover,
.hpdh-repeater-remove:focus,
.hpdh-repeater-remove:active {
	background: transparent !important;
	color: #C53030 !important;
	text-decoration: underline;
	box-shadow: none !important;
}
.hpdh-repeater-template { display: none !important; }
.hpdh-btn-outline.hpdh-repeater-add { padding: 8px 16px; font-size: 13px; }

/* Checkbox group (e.g. Read/Speak/Understand/Write) */
.hpdh-checkbox-group { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.hpdh-checkbox-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 400 !important;
	font-size: 13px;
	padding: 6px 12px;
	border: 1px solid #d8d8d8;
	border-radius: 999px;
	background: #fff;
	cursor: pointer;
}
.hpdh-checkbox-pill:has(input:checked) {
	border-color: var(--hpdh-secondary);
	background: color-mix(in srgb, var(--hpdh-secondary) 12%, white);
}

.hpdh-autocalc-hint { font-weight: 400; font-size: 11px; color: #9aa0a8; text-transform: none; }

.hpdh-static-text { font-size: 13.5px; color: #555; line-height: 1.6; margin: 4px 0 14px; }
.hpdh-notice-box {
	background: #fff7e6;
	border: 1px solid #f0d9a8;
	border-radius: 10px;
	padding: 12px 18px;
	margin-bottom: 12px;
}
.hpdh-notice-box ul { margin: 0; padding-left: 18px; }
.hpdh-notice-box li { font-size: 13.5px; color: #5a4a10; margin-bottom: 4px; }
.hpdh-notice-box p { font-size: 13.5px; color: #5a4a10; line-height: 1.6; }

@media (max-width: 640px) {
	.hpdh-w-half, .hpdh-w-third, .hpdh-w-quarter, .hpdh-w-fifth, .hpdh-w-eighth { flex: 1 1 100%; }
}

/* ---------- Admin ---------- */
.hpdh-admin .hpdh-admin-card {
	background: #fff;
	border: 1px solid #dcdcde;
	border-radius: 8px;
	padding: 16px 20px;
	margin: 16px 0;
	max-width: 900px;
}
.hpdh-status-pill { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; margin: 0 10px; }
.hpdh-pill-on { background: color-mix(in srgb, #2F855A 15%, white); color: #2F855A; }
.hpdh-pill-off { background: #eee; color: #777; }

.hpdh-status-badge { display: inline-block; padding: 3px 9px; border-radius: 6px; font-size: 11.5px; font-weight: 700; background: #eef0f2; color: #444; }
.hpdh-status-new { background: #e8f0fe; color: #1a56db; }
.hpdh-status-received_not_hiring { background: #eee; color: #666; }
.hpdh-status-invite_sent, .hpdh-status-large_app_sent { background: color-mix(in srgb, var(--hpdh-secondary) 20%, white); color: #7a5c17; }
.hpdh-status-agility_booked { background: #f3e8ff; color: #6b21a8; }
.hpdh-status-agility_passed, .hpdh-status-large_app_done, .hpdh-status-hired, .hpdh-status-written_exam_passed, .hpdh-status-chiefs_board_passed, .hpdh-status-chiefs_interview_passed, .hpdh-status-in_process { background: color-mix(in srgb, #2F855A 15%, white); color: #2F855A; }
.hpdh-status-agility_failed, .hpdh-status-not_selected, .hpdh-status-agility_no_show, .hpdh-status-written_exam_failed, .hpdh-status-written_exam_no_show, .hpdh-status-chiefs_board_failed, .hpdh-status-chiefs_board_no_show, .hpdh-status-chiefs_interview_failed, .hpdh-status-chiefs_interview_no_show { background: color-mix(in srgb, #C53030 12%, white); color: #C53030; }
.hpdh-status-agility_cancelled { background: color-mix(in srgb, #8a6d1f 15%, white); color: #8a6d1f; }

.hpdh-send-bar { margin: 14px 0; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding: 12px 16px; background: #fff; border: 1px solid #e0e0e0; border-radius: 4px; }
.hpdh-send-bar-divider { color: #ccc; margin: 0 4px; }

/* Sticky top bar -- keeps the status/delete/email actions reachable
   without scrolling past a long applicant list. position:sticky
   degrades gracefully to normal static positioning on its own if
   anything about the surrounding layout prevents it from taking
   effect (e.g. an ancestor with overflow set) -- there's no failure
   mode where this breaks the page, only one where it simply doesn't
   stick. */
.hpdh-send-bar-top { position: sticky; top: 32px; z-index: 100; box-shadow: 0 2px 6px rgba(0,0,0,0.08); }
@media screen and (max-width: 782px) {
	.hpdh-send-bar-top { top: 46px; }
}

/* Agility verdict links (Pass/Fail/No Show/Cancelled) and their
   locked-in badge equivalent once a verdict's been set. */
.hpdh-verdict-links { margin-top: 4px; display: flex; gap: 6px; }
.hpdh-verdict-link { font-size: 11px; padding: 2px 8px; border-radius: 3px; text-decoration: none; border: 1px solid #ccc; }
.hpdh-verdict-pass { color: #1a7a3c; border-color: #1a7a3c; }
.hpdh-verdict-pass:hover { background: #1a7a3c; color: #fff; }
.hpdh-verdict-fail, .hpdh-verdict-no_show { color: #b32d2e; border-color: #b32d2e; }
.hpdh-verdict-fail:hover, .hpdh-verdict-no_show:hover { background: #b32d2e; color: #fff; }
.hpdh-verdict-cancelled { color: #8a6d1f; border-color: #8a6d1f; }
.hpdh-verdict-cancelled:hover { background: #8a6d1f; color: #fff; }
.hpdh-verdict-badge { display: inline-block; font-size: 11px; padding: 3px 8px; border-radius: 3px; font-weight: 600; }
.hpdh-verdict-badge-passed { background: #e6f4ea; color: #1a7a3c; }
.hpdh-verdict-badge-failed, .hpdh-verdict-badge-no_show { background: #fdecec; color: #b32d2e; }

/* Scoring & Dates -- collapsible <details> with a grid layout instead
   of one long stacked column. */
.hpdh-view-details-link { font-size: 12px; display: block; margin: 2px 0; }
.hpdh-scoring-toggle { text-decoration: none; font-size: 13px; display: inline-block; }
.hpdh-scoring-toggle:hover { text-decoration: underline; }
.hpdh-toggle-arrow { display: inline-block; width: 10px; }
.hpdh-scoring-row > td { background: #fafbfc; padding: 18px 20px !important; border-top: 2px solid #e0e0e0; }
.hpdh-scoring-content { max-width: 100%; }
.hpdh-date-display { display: flex; align-items: center; gap: 8px; }
.hpdh-edit-date-link { font-size: 11px; }
.hpdh-scoring-section-title { margin: 18px 0 10px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.03em; color: #555; border-bottom: 1px solid #e0e0e0; padding-bottom: 6px; }
.hpdh-scoring-section-title .description { text-transform: none; letter-spacing: normal; font-weight: normal; display: block; margin-top: 2px; }
.hpdh-scoring-field-grid { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 4px; }
.hpdh-scoring-field { display: flex; flex-direction: column; gap: 4px; min-width: 180px; }
.hpdh-scoring-field-narrow { min-width: 130px; flex: 0 1 130px; }
.hpdh-scoring-field label { font-size: 12px; font-weight: 600; color: #333; }
.hpdh-scoring-field input, .hpdh-scoring-field select { width: 100%; box-sizing: border-box; }
.hpdh-scoring-field-note { font-size: 11px; font-weight: 600; }
.hpdh-note-pass { color: #1a7a3c; }
.hpdh-note-fail { color: #b32d2e; }
.hpdh-dates-grid .hpdh-scoring-field { min-width: 150px; }
.hpdh-scoring-totals { display: flex; gap: 24px; margin: 16px 0; padding: 14px 18px; background: #f7f7f7; border-radius: 6px; border: 1px solid #e0e0e0; }
.hpdh-totals-item { display: flex; flex-direction: column; gap: 2px; }
.hpdh-totals-label { font-size: 12px; color: #666; text-transform: uppercase; letter-spacing: 0.02em; }
.hpdh-totals-value { font-size: 22px; font-weight: 700; color: #0F1E2E; }
.hpdh-totals-final .hpdh-totals-value { color: #8a6d1f; }

.hpdh-admin-subcard {
	background: #f9f9fa;
	border: 1px solid #e2e2e4;
	border-radius: 8px;
	padding: 14px 16px;
	margin: 12px 0;
}
.hpdh-inline-fields { display: flex; gap: 20px; flex-wrap: wrap; }
.hpdh-inline-fields label { flex: 1 1 200px; }
.hpdh-test-card { border-color: #e0c46a; background: #fffdf5; }
.hpdh-test-badge {
	display: inline-block;
	background: #e0c46a;
	color: #5a4a10;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.04em;
	padding: 2px 7px;
	border-radius: 5px;
	vertical-align: middle;
}
.hpdh-test-row { background: #fffdf5 !important; }
.hpdh-ssn-box { margin-bottom: 14px; padding: 10px 14px; background: #fff8ee; border: 1px solid #f0dfa8; border-radius: 8px; }
.hpdh-ssn-revealed { font-family: monospace; font-weight: 700; color: #C53030; }
.hpdh-ssn-masked { font-family: monospace; }
.hpdh-inline-form { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.hpdh-hidden-field-row { opacity: 0.5; background: #f3f3f3 !important; }
.hpdh-save-all-row {
	position: sticky;
	bottom: 0;
	background: #fff;
	padding: 14px 0;
	margin: 20px 0 0 0;
	border-top: 1px solid #dcdcde;
	z-index: 10;
}

/* ---------- Hiring Info Page ---------- */
.hpdh-info .hpdh-section-title {
	margin: 32px 0 14px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--hpdh-secondary);
	color: var(--hpdh-primary);
	font-size: 20px;
}
.hpdh-info-stat-row { display: flex; gap: 14px; margin: 4px 0 10px; flex-wrap: wrap; }
.hpdh-info-stat {
	flex: 1 1 200px;
	background: var(--hpdh-primary);
	color: #fff;
	border-radius: 12px;
	padding: 18px 20px;
	text-align: center;
}
.hpdh-info-stat-value { display: block; font-size: 26px; font-weight: 800; color: var(--hpdh-secondary); }
.hpdh-info-stat-label { display: block; font-size: 12.5px; color: #cbd3dc; margin-top: 4px; }

.hpdh-info-checklist { list-style: none; margin: 0 0 6px; padding: 0; }
.hpdh-info-checklist li {
	position: relative;
	padding: 8px 0 8px 30px;
	border-bottom: 1px solid #f0f0f0;
	color: #333;
	font-size: 14.5px;
}
.hpdh-info-checklist li:last-child { border-bottom: none; }
.hpdh-info-checklist li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 8px;
	width: 20px; height: 20px;
	border-radius: 50%;
	background: color-mix(in srgb, #2F855A 15%, white);
	color: #2F855A;
	font-size: 12px;
	font-weight: 800;
	display: flex; align-items: center; justify-content: center;
}

.hpdh-info-table { width: 100%; border-collapse: collapse; margin: 4px 0 10px; }
.hpdh-info-table th {
	background: var(--hpdh-primary);
	color: #fff;
	text-align: left;
	padding: 10px 14px;
	font-size: 12.5px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.hpdh-info-table td { padding: 10px 14px; border-bottom: 1px solid #eee; font-size: 14px; color: #333; }
.hpdh-info-table tr:nth-child(even) td { background: #fafbfc; }

.hpdh-info-eval {
	display: flex;
	gap: 16px;
	margin-bottom: 18px;
	padding: 18px 20px;
	background: #fff;
	border: 1px solid #eceef1;
	border-radius: 12px;
}
.hpdh-info-eval-num {
	flex: 0 0 auto;
	width: 34px; height: 34px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--hpdh-secondary) 18%, white);
	color: var(--hpdh-primary);
	font-weight: 800;
	display: flex; align-items: center; justify-content: center;
}
.hpdh-info-eval h4 { margin: 2px 0 6px; color: var(--hpdh-primary); }
.hpdh-info-eval h5 { margin: 16px 0 4px; color: var(--hpdh-primary); font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; }
.hpdh-info-eval p { margin: 0 0 8px; font-size: 14px; color: #444; line-height: 1.6; }
.hpdh-info-eval .hpdh-info-checklist { margin-bottom: 8px; }

.hpdh-address-block {
	margin-top: 6px;
	padding: 8px 12px;
	background: #f7f7f8;
	border-left: 3px solid var(--hpdh-secondary);
	border-radius: 0 6px 6px 0;
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--hpdh-primary);
	font-weight: 600;
}

/* Cover page (letterhead, photo upload, applicant name, IMPORTANT notice) */
.hpdh-cover { margin-bottom: 10px; }
.hpdh-cover-letterhead {
	text-align: center;
	padding: 18px 0 20px;
	margin-bottom: 16px;
	border-bottom: 2px solid var(--hpdh-primary);
	font-size: 14px;
	line-height: 1.7;
	color: var(--hpdh-primary);
}
.hpdh-cover-letterhead strong { font-size: 16px; }
.hpdh-cover p { font-size: 14px; color: #444; line-height: 1.6; }
.hpdh-cover-photo-row { display: flex; justify-content: center; margin: 18px 0; }
.hpdh-cover-photo-box {
	width: 220px;
	text-align: center;
	padding: 18px 16px;
	border: 2px dashed #cfd4da;
	border-radius: 12px;
	background: #fafbfc;
}
.hpdh-cover-photo-box label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--hpdh-primary);
	margin-bottom: 10px;
}
.hpdh-cover-photo-box input[type="file"] { width: 100%; font-size: 12.5px; }
.hpdh-cover-important h4 { margin-top: 0; }
.hpdh-cover-important p { font-size: 12.5px; color: #5a4a10; line-height: 1.7; }
.hpdh-cover-title {
	text-align: center;
	margin: 22px 0 4px;
	color: var(--hpdh-primary);
	font-size: 20px;
	line-height: 1.4;
}

/* Detail grid (icon + label + value pairs), used in the Written Aptitude Test block */
.hpdh-detail-grid { display: flex; flex-wrap: wrap; gap: 12px; margin: 12px 0; }
.hpdh-detail-item {
	flex: 1 1 220px;
	display: flex;
	gap: 10px;
	align-items: flex-start;
	background: #fafbfc;
	border: 1px solid #eee;
	border-radius: 10px;
	padding: 12px 14px;
}
.hpdh-detail-icon { font-size: 16px; line-height: 1.4; flex: 0 0 auto; }
.hpdh-detail-label { display: block; font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--hpdh-secondary); margin-bottom: 3px; }
.hpdh-detail-value { display: block; font-size: 13.5px; color: var(--hpdh-primary); line-height: 1.5; font-weight: 600; }

/* Study guide highlight box */
.hpdh-studyguide-box {
	background: color-mix(in srgb, var(--hpdh-secondary) 6%, white);
	border: 1px solid color-mix(in srgb, var(--hpdh-secondary) 30%, white);
	border-radius: 12px;
	padding: 16px 18px;
	margin: 14px 0;
}
.hpdh-studyguide-box p { margin: 0 0 10px; }
.hpdh-coupon-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 10px 0 14px;
	flex-wrap: wrap;
}
.hpdh-coupon-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: #8a8f98; }
.hpdh-coupon-code {
	font-family: 'Courier New', monospace;
	font-weight: 800;
	font-size: 14px;
	letter-spacing: 0.06em;
	background: #fff;
	border: 1.5px dashed var(--hpdh-secondary);
	border-radius: 6px;
	padding: 4px 10px;
	color: var(--hpdh-primary);
}
.hpdh-copy-btn {
	appearance: none;
	border: 1.5px solid var(--hpdh-primary);
	background: #fff;
	color: var(--hpdh-primary);
	font-size: 12px;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 6px;
	cursor: pointer;
}
.hpdh-copy-btn:hover { background: var(--hpdh-primary) !important; color: #fff !important; }
.hpdh-copy-btn-done { background: #2F855A !important; border-color: #2F855A !important; color: #fff !important; }

/* Test schedule step chips */
.hpdh-step-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 16px; }
.hpdh-step-chip {
	font-size: 12.5px;
	font-weight: 700;
	color: var(--hpdh-primary);
	background: #fafbfc;
	border: 1px solid #eee;
	border-radius: 999px;
	padding: 6px 14px;
}

.hpdh-info-note { font-size: 13px; color: #767b85; font-style: italic; margin: 4px 0 10px; }
.hpdh-info-contact { text-align: center; margin-top: 30px; }
.hpdh-info-contact h4 { margin-top: 0; }

.hpdh-field-editor .hpdh-drag-handle {
	cursor: grab;
	text-align: center;
	color: #999;
	font-size: 16px;
	user-select: none;
}
.hpdh-field-editor .hpdh-drag-handle:active { cursor: grabbing; }
.hpdh-field-editor tr.ui-sortable-helper {
	display: table;
	box-shadow: 0 4px 14px rgba(0,0,0,0.15);
	background: #fff;
}
.hpdh-field-editor tr.ui-sortable-placeholder {
	background: #eef4ff;
	border: 1px dashed #8aaee0;
	visibility: visible !important;
}
.hpdh-fallback-move { opacity: 0.55; }
.hpdh-fallback-move:hover { opacity: 1; }
.hpdh-tab-content { margin-top: 18px; }

.hpdh-app-section-row td {
	background: var(--hpdh-primary);
	color: #fff;
	padding: 8px 12px !important;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
