/*
 * Staff dashboard.
 *
 * A working tool, not a marketing page: quieter than the public site, and built
 * for a desktop screen the team keeps open all day. Shares the brand tokens so
 * it is recognisably the same product, but nothing else.
 *
 * Type scale is deliberately larger than a typical admin UI. The people who
 * live in this screen are around 35-45, which is exactly when near vision starts
 * to go, and they read it for hours. Body text is 17px and nothing drops below
 * 12px — and that floor is only for uppercase micro-labels, which are shapes to
 * recognise rather than text to read. Inputs are 17px, which also stops iOS
 * zooming the page whenever a field is focused.
 *
 * The settings form is rendered by Sinark_Settings, which emits WordPress admin
 * markup. Rather than write a second copy of that form, .sk-adminform styles the
 * admin classes it produces.
 */

.sinark-staff-body {
	background: #f3f5f7;
	margin: 0;
}

.sk-staff {
	--sk-red: #dd3333;
	--sk-red-dark: #c02b2b;
	--sk-ink: #181b31;
	--sk-body: #5b6270;
	--sk-line: #e2e6ec;
	--sk-paper: #ffffff;
	--sk-wash: #f3f5f7;

	--sk-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
		Arial, "Noto Sans", sans-serif;

	box-sizing: border-box;
	color: var(--sk-body);
	font-family: var(--sk-font);
	font-size: 17px;
	line-height: 1.65;
	min-height: 100vh;
	-webkit-font-smoothing: antialiased;
}

.sk-staff *,
.sk-staff *::before,
.sk-staff *::after {
	box-sizing: inherit;
}

.sk-staff a {
	color: inherit;
}

.sk-staff :focus-visible {
	outline: 2px solid var(--sk-red);
	outline-offset: 2px;
}

.sk-staff-wrap {
	margin: 0 auto;
	max-width: 1240px;
	padding: 0 clamp(1rem, 3vw, 2rem);
	width: 100%;
}

/* --- Top bar -------------------------------------------------------------- */

.sk-staff-bar {
	background: var(--sk-ink);
	color: #fff;
	margin-bottom: 2rem;
}

.sk-staff-bar-inner {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 2rem;
	min-height: 70px;
	padding-bottom: 0.6rem;
	padding-top: 0.6rem;
}

.sk-staff-brand {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.01em;
	text-decoration: none;
}

.sk-staff-brand span {
	color: #fff;
}

.sk-staff-brand {
	color: var(--sk-red);
}

.sk-staff-brand em {
	color: rgba(255, 255, 255, 0.5);
	display: block;
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.sk-staff-nav {
	display: flex;
	gap: 1.5rem;
	margin-right: auto;
}

.sk-staff-nav a {
	border-bottom: 2px solid transparent;
	color: rgba(255, 255, 255, 0.7);
	font-size: 16px;
	padding-bottom: 4px;
	padding-bottom: 3px;
	text-decoration: none;
}

.sk-staff-nav a:hover { color: #fff; }

.sk-staff-nav a.is-active {
	border-bottom-color: var(--sk-red);
	color: #fff;
}

.sk-staff-user {
	align-items: center;
	color: rgba(255, 255, 255, 0.6);
	display: flex;
	font-size: 15px;
	gap: 1.1rem;
}

.sk-staff-user a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
}

.sk-staff-user a:hover { color: #fff; }

/* --- Page head ------------------------------------------------------------ */

.sk-staff-head {
	align-items: baseline;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	margin-bottom: 1.25rem;
}

.sk-staff-title {
	color: var(--sk-ink);
	font-size: 29px;
	font-weight: 700;
	letter-spacing: -0.01em;
	margin: 0;
}

.sk-staff-count {
	margin: 0;
	font-size: 16px;
}

.sk-back {
	font-size: 15px;
	margin: 0 0 0.75rem;
}

.sk-back a { text-decoration: none; }
.sk-back a:hover { color: var(--sk-red); }

.sk-flash {
	background: #eaf7ee;
	border-left: 3px solid #2f9e58;
	color: #1c5c34;
	font-size: 16px;
	margin: 0 0 1.25rem;
	padding: 0.85rem 1rem;
}

.sk-staff-empty {
	background: var(--sk-paper);
	border: 1px solid var(--sk-line);
	color: var(--sk-body);
	padding: 2.5rem;
	text-align: center;
}

.sk-dim { color: #8b93a1; }

/* --- Tabs and search ------------------------------------------------------ */

.sk-tabs {
	border-bottom: 1px solid var(--sk-line);
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem;
	margin-bottom: 1.25rem;
}

.sk-tab {
	border-bottom: 2px solid transparent;
	color: var(--sk-body);
	font-size: 16px;
	padding: 0.7rem 1rem;
	text-decoration: none;
	white-space: nowrap;
}

.sk-tab span {
	color: #98a0ad;
	font-size: 14px;
}

.sk-tab:hover { color: var(--sk-ink); }

.sk-tab.is-active {
	border-bottom-color: var(--sk-red);
	color: var(--sk-ink);
	font-weight: 600;
}

.sk-staff-search {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.25rem;
}

.sk-staff-search input[type="search"] {
	background: var(--sk-paper);
	border: 1px solid var(--sk-line);
	border-radius: 3px;
	color: var(--sk-ink);
	flex: 1 1 260px;
	font-family: inherit;
	font-size: 17px;
	max-width: 480px;
	padding: 0.7rem 0.9rem;
}

.sk-staff-search button {
	background: var(--sk-ink);
	border: 0;
	border-radius: 3px;
	color: #fff;
	cursor: pointer;
	font-family: inherit;
	font-size: 16px;
	padding: 0.55rem 1.3rem;
}

.sk-staff-search button:hover { background: #23273f; }

.sk-staff-clear {
	align-self: center;
	font-size: 15px;
}

/* --- Table ---------------------------------------------------------------- */

.sk-table-scroll {
	background: var(--sk-paper);
	border: 1px solid var(--sk-line);
	overflow-x: auto;
}

.sk-table {
	border-collapse: collapse;
	min-width: 780px;
	width: 100%;
}

.sk-table th,
.sk-table td {
	padding: 0.9rem 1.15rem;
	text-align: left;
	vertical-align: middle;
}

.sk-table thead th {
	background: #fafbfc;
	border-bottom: 1px solid var(--sk-line);
	color: #7b8290;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	white-space: nowrap;
}

.sk-table tbody tr + tr td {
	border-top: 1px solid var(--sk-line);
}

.sk-table tbody tr:hover { background: #fafbfc; }

.sk-table .sk-num {
	text-align: right;
	white-space: nowrap;
}

.sk-ref {
	color: var(--sk-ink);
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}

.sk-ref:hover { color: var(--sk-red); }

.sk-cell-name {
	color: var(--sk-ink);
	display: block;
}

.sk-cell-sub {
	color: #98a0ad;
	display: block;
	font-size: 14px;
}

/* --- Status pills --------------------------------------------------------- */

.sk-pill {
	border-radius: 2px;
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	padding: 0.2rem 0.5rem;
	text-transform: uppercase;
	white-space: nowrap;
}

.sk-pill--pending   { background: #fdf3d9; color: #8a6100; }
.sk-pill--approved  { background: #e3edfb; color: #1f4f8f; }
.sk-pill--published { background: #e4f5e9; color: #1c6b3a; }
.sk-pill--rejected  { background: #fbe6e6; color: #97231f; }
.sk-pill--expired   { background: #eceef1; color: #626a78; }

.sk-paid {
	color: #1c6b3a;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	margin-left: 0.35rem;
	text-transform: uppercase;
}

/* --- Pager ---------------------------------------------------------------- */

.sk-pager {
	display: flex;
	flex-wrap: wrap;
	gap: 0.3rem;
	margin-top: 1.25rem;
}

.sk-page {
	background: var(--sk-paper);
	border: 1px solid var(--sk-line);
	color: var(--sk-body);
	font-size: 15px;
	min-width: 34px;
	padding: 0.35rem 0.6rem;
	text-align: center;
	text-decoration: none;
}

.sk-page.is-active {
	background: var(--sk-ink);
	border-color: var(--sk-ink);
	color: #fff;
}

/* --- Detail --------------------------------------------------------------- */

.sk-detail {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
	padding-bottom: 3rem;
}

@media (min-width: 1000px) {
	.sk-detail {
		grid-template-columns: 1fr 340px;
	}
}

.sk-card {
	background: var(--sk-paper);
	border: 1px solid var(--sk-line);
	margin-bottom: 1.5rem;
	padding: 1.25rem 1.4rem 1.4rem;
}

.sk-card-title {
	border-bottom: 1px solid var(--sk-line);
	color: var(--sk-ink);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.08em;
	margin: 0 0 1rem;
	padding-bottom: 0.7rem;
	text-transform: uppercase;
}

.sk-card-foot {
	font-size: 15px;
	margin: 0.7rem 0 0;
}

.sk-facts { margin: 0; }

.sk-facts > div {
	display: grid;
	gap: 0.5rem 1rem;
	grid-template-columns: 1fr;
	padding: 0.5rem 0;
}

@media (min-width: 560px) {
	.sk-facts > div {
		grid-template-columns: 190px 1fr;
	}
}

.sk-facts > div + div {
	border-top: 1px solid #f1f3f6;
}

.sk-facts dt {
	color: #7b8290;
	font-size: 15px;
}

.sk-facts dd {
	color: var(--sk-ink);
	margin: 0;
	overflow-wrap: anywhere;
}

.sk-shot {
	border: 1px solid var(--sk-line);
	display: block;
}

.sk-staff .sk-shot-img {
	display: block;
	height: auto;
	width: 100%;
}

/* --- History -------------------------------------------------------------- */

.sk-history {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sk-history-item {
	border-left: 2px solid var(--sk-line);
	padding: 0 0 1.1rem 1rem;
	position: relative;
}

.sk-history-item:last-child { padding-bottom: 0; }

.sk-history-item::before {
	background: var(--sk-red);
	border-radius: 50%;
	content: "";
	height: 7px;
	left: -4.5px;
	position: absolute;
	top: 7px;
	width: 7px;
}

.sk-history-when {
	color: #98a0ad;
	font-size: 14px;
	margin: 0;
}

.sk-history-what {
	color: var(--sk-ink);
	margin: 0.1rem 0;
}

.sk-history-who {
	color: #98a0ad;
	font-size: 14px;
	margin: 0;
}

/* --- Actions -------------------------------------------------------------- */

.sk-field-label {
	color: var(--sk-ink);
	display: block;
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 0.35rem;
}

.sk-field-label span {
	color: #98a0ad;
	font-weight: 400;
}

.sk-note {
	border: 1px solid var(--sk-line);
	border-radius: 3px;
	font-family: inherit;
	font-size: 16px;
	margin-bottom: 1rem;
	padding: 0.6rem 0.7rem;
	resize: vertical;
	width: 100%;
}

.sk-buttons {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.sk-buttons button {
	border: 1px solid transparent;
	border-radius: 3px;
	cursor: pointer;
	font-family: inherit;
	font-size: 16px;
	font-weight: 500;
	padding: 0.8rem 1rem;
	width: 100%;
}

.sk-btn-go {
	background: #1c6b3a;
	color: #fff;
}

.sk-btn-go:hover { background: #175830; }

.sk-btn-off {
	background: var(--sk-paper);
	border-color: var(--sk-line);
	color: #97231f;
}

.sk-btn-off:hover { border-color: #97231f; }

.sk-btn-alt {
	background: var(--sk-paper);
	border-color: var(--sk-line);
	color: var(--sk-ink);
}

.sk-btn-alt:hover { border-color: var(--sk-ink); }

/* --- Sign-in gate --------------------------------------------------------- */

.sk-staff--gate {
	align-items: center;
	background:
		radial-gradient(1100px 520px at 12% -10%, rgba(221, 51, 51, 0.10), transparent 60%),
		linear-gradient(160deg, #1b1f3a 0%, #12142a 55%, #0b0d1c 100%);
	display: flex;
	justify-content: center;
	min-height: 100vh;
	padding: 2rem 1rem;
}

.sk-gate {
	background: var(--sk-paper);
	border-radius: 18px;
	box-shadow: 0 24px 70px rgba(6, 8, 22, 0.55);
	display: grid;
	grid-template-columns: 45% 55%;
	max-width: 900px;
	overflow: hidden;
	width: 100%;
}

/* Brand panel — dark chrome, the one place colour and decoration live. */
.sk-gate-brand {
	background:
		radial-gradient(260px 260px at 88% -12%, rgba(221, 51, 51, 0.32), transparent 70%),
		radial-gradient(220px 220px at -12% 112%, rgba(221, 51, 51, 0.16), transparent 70%),
		linear-gradient(158deg, #23274f 0%, #15172f 58%, #0e1022 100%);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
	padding: 2.75rem 2.5rem;
	position: relative;
}

/* Faint ruled lines — a nod to the printed notices the team publishes. */
.sk-gate-brand::before {
	content: "";
	inset: 0;
	background-image: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 15px);
	-webkit-mask-image: linear-gradient(180deg, transparent, #000 45%, transparent);
	mask-image: linear-gradient(180deg, transparent, #000 45%, transparent);
	pointer-events: none;
	position: absolute;
}

.sk-gate-brand > * {
	position: relative;
	z-index: 1;
}

.sk-gate-eyebrow {
	color: #ff8080;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	margin: 0 0 1rem;
	text-transform: uppercase;
}

.sk-gate-mark {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.01em;
	line-height: 1;
	margin: 0;
}

.sk-gate-mark b {
	color: #ff5a5a;
	font-weight: 800;
}

.sk-gate-headline {
	color: #fff;
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -0.015em;
	line-height: 1.12;
	margin: 0.7rem 0 0.55rem;
}

.sk-gate-lead {
	color: rgba(255, 255, 255, 0.72);
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
	max-width: 30ch;
}

.sk-gate-trust {
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
	color: rgba(255, 255, 255, 0.62);
	display: flex;
	font-size: 13px;
	gap: 0.5rem;
	margin: 0;
	padding-top: 1.1rem;
}

/* Form panel — light, quiet, slate. */
.sk-gate-form-panel {
	padding: 2.75rem 2.5rem;
}

.sk-gate-kicker {
	color: #94a3b8;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	margin: 0 0 0.45rem;
	text-transform: uppercase;
}

.sk-gate-title {
	color: var(--sk-ink);
	font-size: 27px;
	font-weight: 800;
	letter-spacing: -0.015em;
	margin: 0 0 0.35rem;
}

.sk-gate-note {
	color: #64748b;
	font-size: 15px;
	margin: 0 0 1.5rem;
}

.sk-gate-error {
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 10px;
	color: #b91c1c;
	font-size: 15px;
	margin: 0 0 1.25rem;
	padding: 0.7rem 0.9rem;
}

.sk-gate-field {
	margin-bottom: 1.1rem;
}

.sk-gate-label {
	color: #334155;
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	margin-bottom: 0.4rem;
	text-transform: uppercase;
}

.sk-gate-inputwrap {
	position: relative;
}

.sk-gate-inputwrap .sk-gate-ico {
	color: #94a3b8;
	left: 13px;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.sk-gate-input {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	color: var(--sk-ink);
	font-family: inherit;
	font-size: 16px;
	padding: 0.8rem 0.9rem 0.8rem 2.65rem;
	width: 100%;
}

.sk-gate-input--pw {
	padding-right: 2.75rem;
}

.sk-gate-input:focus {
	background: #fff;
	border-color: var(--sk-red);
	box-shadow: 0 0 0 3px rgba(221, 51, 51, 0.15);
	outline: none;
}

.sk-gate-eye {
	background: transparent;
	border: 0;
	border-radius: 6px;
	color: #94a3b8;
	cursor: pointer;
	line-height: 0;
	padding: 6px;
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
}

.sk-gate-eye:hover {
	color: #475569;
}

.sk-gate-check {
	align-items: center;
	color: #475569;
	display: flex;
	font-size: 15px;
	gap: 0.5rem;
	margin: 0.2rem 0 1.4rem;
}

.sk-gate-submit {
	align-items: center;
	background: var(--sk-red);
	border: 0;
	border-radius: 10px;
	color: #fff;
	cursor: pointer;
	display: flex;
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	gap: 0.5rem;
	justify-content: center;
	padding: 0.85rem;
	transition: background 0.15s ease;
	width: 100%;
}

.sk-gate-submit:hover {
	background: var(--sk-red-dark);
}

.sk-gate-submit svg {
	transition: transform 0.15s ease;
}

.sk-gate-submit:hover svg {
	transform: translateX(3px);
}

.sk-gate-foot {
	color: #64748b;
	font-size: 14px;
	margin: 1.3rem 0 0;
	text-align: center;
}

.sk-gate-foot a {
	color: var(--sk-red);
	text-decoration: none;
}

.sk-gate-foot a:hover {
	text-decoration: underline;
}

@media (max-width: 720px) {
	.sk-gate {
		grid-template-columns: 1fr;
		max-width: 440px;
	}

	.sk-gate-brand {
		padding: 1.9rem;
	}

	.sk-gate-brand .sk-gate-lead,
	.sk-gate-trust {
		display: none;
	}

	.sk-gate-headline {
		font-size: 24px;
	}

	.sk-gate-form-panel {
		padding: 1.9rem;
	}
}

/* --- Settings ------------------------------------------------------------- */

/*
 * Sinark_Settings renders WordPress admin markup. These rules make that markup
 * presentable here, so there is exactly one settings form in the codebase
 * instead of a front-end copy that quietly falls behind.
 */

.sk-adminform {
	background: var(--sk-paper);
	border: 1px solid var(--sk-line);
	margin-bottom: 3rem;
	padding: 1.5rem 1.75rem 2rem;
}

.sk-adminform .wrap { margin: 0; }

.sk-adminform h1 {
	color: var(--sk-ink);
	font-size: 29px;
	font-weight: 700;
	margin: 0 0 0.5rem;
}

.sk-adminform h2.title,
.sk-adminform h2 {
	border-top: 1px solid var(--sk-line);
	color: var(--sk-ink);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.07em;
	margin: 2rem 0 0.5rem;
	padding-top: 1.5rem;
	text-transform: uppercase;
}

.sk-adminform .form-table {
	border-collapse: collapse;
	width: 100%;
}

.sk-adminform .form-table th {
	color: var(--sk-ink);
	font-size: 16px;
	font-weight: 600;
	padding: 1rem 1rem 1rem 0;
	text-align: left;
	vertical-align: top;
	width: 210px;
}

.sk-adminform .form-table td {
	padding: 1rem 0;
	vertical-align: top;
}

.sk-adminform .form-table tr + tr th,
.sk-adminform .form-table tr + tr td {
	border-top: 1px solid #f1f3f6;
}

.sk-adminform input[type="text"],
.sk-adminform input[type="url"],
.sk-adminform input[type="email"],
.sk-adminform input[type="number"],
.sk-adminform textarea {
	background: #fff;
	border: 1px solid var(--sk-line);
	border-radius: 3px;
	color: var(--sk-ink);
	font-family: inherit;
	font-size: 16px;
	padding: 0.65rem 0.8rem;
}

.sk-adminform .large-text { width: 100%; }
.sk-adminform .regular-text { width: 320px; max-width: 100%; }
.sk-adminform .small-text { width: 90px; }

.sk-adminform textarea.code,
.sk-adminform .code {
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 15px;
}

.sk-adminform .description {
	color: #7b8290;
	font-size: 15px;
	margin: 0.4rem 0 0;
}

.sk-adminform .button,
.sk-adminform .button-primary,
.sk-adminform input[type="submit"] {
	background: var(--sk-paper);
	border: 1px solid var(--sk-line);
	border-radius: 3px;
	color: var(--sk-ink);
	cursor: pointer;
	font-family: inherit;
	font-size: 16px;
	padding: 0.55rem 1.2rem;
	text-decoration: none;
}

.sk-adminform .button-primary,
.sk-adminform input[type="submit"] {
	background: var(--sk-red);
	border-color: var(--sk-red);
	color: #fff;
}

.sk-adminform .button-primary:hover,
.sk-adminform input[type="submit"]:hover {
	background: var(--sk-red-dark);
	border-color: var(--sk-red-dark);
}

.sk-adminform .notice {
	background: #eaf7ee;
	border: 0;
	border-left: 3px solid #2f9e58;
	color: #1c5c34;
	margin: 0 0 1.25rem;
	padding: 0.85rem 1rem;
}

.sk-adminform .notice p { margin: 0; }

.sk-adminform .notice-error {
	background: #fbe6e6;
	border-left-color: #97231f;
	color: #97231f;
}

/* --- Team ----------------------------------------------------------------- */

.sk-team {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
	padding-bottom: 3rem;
}

@media (min-width: 1000px) {
	.sk-team {
		align-items: start;
		grid-template-columns: 1fr 360px;
	}
}

.sk-team .sk-table {
	min-width: 0;
}

.sk-team-admins {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sk-team-admins li {
	border-bottom: 1px solid #f1f3f6;
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	justify-content: space-between;
	padding: 0.55rem 0;
}

.sk-team-admins strong {
	color: var(--sk-ink);
	font-weight: 600;
}

/* A destructive action, so it reads as a link rather than a button — nothing
   here should invite a stray click. */
.sk-link-danger {
	background: none;
	border: 0;
	color: #97231f;
	cursor: pointer;
	font-family: inherit;
	font-size: 15px;
	padding: 0;
	text-decoration: underline;
}

.sk-link-danger:hover {
	color: #7a1a17;
}

.sk-flash--bad {
	background: #fbe6e6;
	border-left-color: #97231f;
	color: #97231f;
}

/* --- Email verification tag ---------------------------------------------- */

.sk-verify {
	border-radius: 999px;
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	margin-top: 4px;
	padding: 3px 10px;
	white-space: nowrap;
}

.sk-verify--ok {
	background: #e3f4e8;
	color: #1f7a3d;
}

.sk-verify--no {
	background: #fdf0dc;
	color: #9a6a00;
}

/* --- Edit booking form --------------------------------------------------- */

.sk-edit-grid {
	display: grid;
	gap: 1.1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-bottom: 1.25rem;
}

.sk-edit-field {
	min-width: 0;
}

.sk-edit-field--wide {
	grid-column: 1 / -1;
}

.sk-edit-input {
	background: #fff;
	border: 1px solid var(--sk-line);
	border-radius: 8px;
	color: var(--sk-ink);
	font-family: inherit;
	font-size: 16px;
	padding: 0.6rem 0.7rem;
	width: 100%;
}

.sk-edit-input:focus {
	border-color: var(--sk-red);
	box-shadow: 0 0 0 3px rgba(221, 51, 51, 0.13);
	outline: none;
}

.sk-edit-file {
	background: var(--sk-wash);
	border: 1px dashed var(--sk-line);
	border-radius: 8px;
	color: var(--sk-body);
	font-family: inherit;
	font-size: 15px;
	padding: 0.6rem 0.7rem;
	width: 100%;
}

@media (max-width: 560px) {
	.sk-edit-grid {
		grid-template-columns: 1fr;
	}
}
