.ipbyte-portal,
.ipbyte-portal * {
	box-sizing: border-box;
	letter-spacing: 0;
}

.ipbyte-portal {
	--ipbyte-bg: #f6f7f9;
	--ipbyte-surface: #ffffff;
	--ipbyte-text: #18202a;
	--ipbyte-muted: #647084;
	--ipbyte-border: #d9dee7;
	--ipbyte-accent: #087fc0;
	--ipbyte-accent-dark: #075f93;
	--ipbyte-amber: #b45309;
	--ipbyte-green: #15803d;
	--ipbyte-red: #d92027;
	--ipbyte-red-dark: #ac141d;
	--ipbyte-soft: #eef2f6;
	color: var(--ipbyte-text);
	font-family: inherit;
	margin: 0 auto;
	max-width: 1120px;
	padding: 28px 18px;
}

.ipbyte-portal a {
	text-decoration: none;
}

.ipbyte-eyebrow,
.ipbyte-label {
	color: var(--ipbyte-muted);
	display: block;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.3;
	text-transform: uppercase;
}

.ipbyte-portal h2,
.ipbyte-portal h3,
.ipbyte-portal h4,
.ipbyte-portal p {
	margin: 0;
}

.ipbyte-portal__header {
	align-items: center;
	background: var(--ipbyte-surface);
	border: 1px solid var(--ipbyte-border);
	border-radius: 8px;
	display: flex;
	gap: 18px;
	justify-content: space-between;
	margin-bottom: 18px;
	padding: 20px;
}

.ipbyte-portal__header h2 {
	font-size: 28px;
	font-weight: 800;
	line-height: 1.15;
	margin: 3px 0 6px;
}

.ipbyte-user {
	color: var(--ipbyte-muted);
	display: inline-block;
	font-size: 14px;
	line-height: 1.35;
}

.ipbyte-portal__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

.ipbyte-btn {
	align-items: center;
	background: var(--ipbyte-surface);
	border: 1px solid var(--ipbyte-border);
	border-radius: 6px;
	color: var(--ipbyte-text);
	cursor: pointer;
	display: inline-flex;
	font-size: 14px;
	font-weight: 750;
	gap: 8px;
	justify-content: center;
	line-height: 1.15;
	min-height: 42px;
	padding: 10px 14px;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
	white-space: nowrap;
}

.ipbyte-btn:hover,
.ipbyte-btn:focus {
	border-color: var(--ipbyte-accent);
	color: var(--ipbyte-accent-dark);
	outline: none;
	transform: translateY(-1px);
}

.ipbyte-btn .dashicons {
	font-size: 18px;
	height: 18px;
	line-height: 18px;
	width: 18px;
}

.ipbyte-btn--primary {
	background: var(--ipbyte-red);
	border-color: var(--ipbyte-red);
	color: #ffffff;
}

.ipbyte-portal .ipbyte-btn--primary,
.ipbyte-portal .ipbyte-btn--primary:visited,
.ipbyte-portal .ipbyte-btn--primary .dashicons,
.ipbyte-portal .ipbyte-btn--primary span {
	color: #ffffff;
}

.ipbyte-btn--primary:hover,
.ipbyte-btn--primary:focus {
	background: var(--ipbyte-red-dark);
	border-color: var(--ipbyte-red-dark);
	color: #ffffff;
}

.ipbyte-portal .ipbyte-btn--primary:hover,
.ipbyte-portal .ipbyte-btn--primary:focus,
.ipbyte-portal .ipbyte-btn--primary:hover .dashicons,
.ipbyte-portal .ipbyte-btn--primary:focus .dashicons,
.ipbyte-portal .ipbyte-btn--primary:hover span,
.ipbyte-portal .ipbyte-btn--primary:focus span {
	color: #ffffff;
}

.ipbyte-btn--ghost {
	background: transparent;
}

.ipbyte-btn.is-disabled {
	cursor: not-allowed;
	opacity: 0.5;
	pointer-events: none;
}

.ipbyte-pagination {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: center;
	margin-top: 16px;
}

.ipbyte-pagination__count {
	color: var(--ipbyte-muted);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35;
	text-align: center;
}

.ipbyte-metrics {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	margin-bottom: 18px;
}

.ipbyte-metric {
	align-items: center;
	background: var(--ipbyte-surface);
	border: 1px solid var(--ipbyte-border);
	border-radius: 8px;
	color: var(--ipbyte-text);
	cursor: pointer;
	display: flex;
	gap: 12px;
	min-height: 92px;
	padding: 16px;
	transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.ipbyte-metric:hover,
.ipbyte-metric:focus {
	border-color: rgba(8, 127, 192, 0.55);
	box-shadow: 0 10px 26px rgba(8, 31, 52, 0.08);
	outline: none;
	transform: translateY(-1px);
}

.ipbyte-metric.is-active {
	background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
	border-color: var(--ipbyte-accent);
	box-shadow: 0 0 0 1px rgba(8, 127, 192, 0.1);
}

.ipbyte-metric > .dashicons {
	align-items: center;
	background: #e7f4fb;
	border-radius: 6px;
	color: var(--ipbyte-accent);
	display: inline-flex;
	font-size: 22px;
	height: 42px;
	justify-content: center;
	line-height: 42px;
	width: 42px;
}

.ipbyte-metric.is-active > .dashicons {
	background: #e7f4fb;
	color: var(--ipbyte-accent);
}

.ipbyte-metric strong {
	color: var(--ipbyte-text);
	display: block;
	font-size: 26px;
	line-height: 1.1;
}

.ipbyte-metric span {
	color: var(--ipbyte-muted);
	font-size: 13px;
	font-weight: 700;
}

.ipbyte-section-title {
	align-items: end;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	margin: 0 0 12px;
}

.ipbyte-section-title h3 {
	font-size: 18px;
	font-weight: 800;
	line-height: 1.2;
}

.ipbyte-section-title > span {
	color: var(--ipbyte-muted);
	font-size: 14px;
	font-weight: 700;
	text-align: right;
}

.ipbyte-order-list {
	display: grid;
	gap: 12px;
}

.ipbyte-order-card {
	background: var(--ipbyte-surface);
	border: 1px solid var(--ipbyte-border);
	border-radius: 8px;
	display: grid;
	gap: 14px;
	padding: 18px;
}

.ipbyte-order-card--abierta {
	border-color: #15803d;
	box-shadow: inset 4px 0 0 #15803d;
}

.ipbyte-order-card--en-revision {
	border-color: #b77900;
	box-shadow: inset 4px 0 0 #b77900;
}

.ipbyte-order-card--cerrada {
	border-color: #647084;
	box-shadow: inset 4px 0 0 #647084;
}

.ipbyte-order-card--con-atraso {
	border-color: #dc2626;
	box-shadow: inset 4px 0 0 #dc2626;
}

.ipbyte-order-card--pendiente-por-facturar-cobrar,
.ipbyte-order-card--cobrado {
	border-color: #1d4ed8;
	box-shadow: inset 4px 0 0 #1d4ed8;
}

.ipbyte-order-card__top,
.ipbyte-order-card__footer {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: space-between;
}

.ipbyte-order-card__top h3 {
	font-size: 21px;
	font-weight: 850;
	line-height: 1.15;
}

.ipbyte-order-card__body {
	display: grid;
	gap: 12px;
	grid-template-columns: 170px minmax(160px, 1fr) minmax(220px, 2fr);
}

.ipbyte-order-card__body p {
	color: var(--ipbyte-text);
	font-size: 14px;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.ipbyte-rating-chip {
	border-radius: 999px;
	display: inline-flex;
	font-size: 12px;
	font-weight: 850;
	line-height: 1.1;
	padding: 7px 10px;
	text-transform: uppercase;
}

.ipbyte-rating-chip--pending {
	background: #fff7d6;
	color: #9a6f00;
}

.ipbyte-rating-chip--done {
	background: #eef2f6;
	color: #647084;
}

.ipbyte-status {
	border-radius: 999px;
	border: 1px solid currentColor;
	display: inline-flex;
	font-size: 13px;
	font-weight: 800;
	justify-content: center;
	line-height: 1.1;
	max-width: 100%;
	padding: 10px 13px;
	text-align: center;
	text-transform: uppercase;
}

.ipbyte-status--abierta {
	background: #eaf7ee;
	color: #15803d;
}

.ipbyte-status--en-revision {
	background: #fff1cc;
	color: #9a6f00;
}

.ipbyte-status--cerrada {
	background: #eef2f6;
	color: #647084;
}

.ipbyte-status--con-atraso {
	background: #fee2e2;
	color: #b91c1c;
}

.ipbyte-status--pendiente-por-facturar-cobrar,
.ipbyte-status--cobrado {
	background: #dbeafe;
	color: #1d4ed8;
}

.ipbyte-notice {
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
	margin-bottom: 14px;
	padding: 13px 15px;
}

.ipbyte-notice--success {
	background: #edf8ef;
	border: 1px solid #b7dfc2;
	color: #166534;
}

.ipbyte-notice--error {
	background: #fff1f1;
	border: 1px solid #f3b7b7;
	color: #9f1f1f;
}

.ipbyte-empty,
.ipbyte-login__panel,
.ipbyte-form-shell,
.ipbyte-detail,
.ipbyte-info {
	background: var(--ipbyte-surface);
	border: 1px solid var(--ipbyte-border);
	border-radius: 8px;
}

.ipbyte-empty {
	align-items: center;
	display: grid;
	gap: 12px;
	justify-items: center;
	padding: 42px 18px;
	text-align: center;
}

.ipbyte-empty > .dashicons {
	color: var(--ipbyte-muted);
	font-size: 44px;
	height: 44px;
	line-height: 44px;
	width: 44px;
}

.ipbyte-empty h3 {
	font-size: 18px;
	font-weight: 800;
}

.ipbyte-login {
	background: transparent;
	border: 0;
	border-radius: 0;
	display: grid;
	justify-items: center;
	min-height: 520px;
	padding: 48px 18px;
}

.ipbyte-portal .ipbyte-login {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none;
}

.ipbyte-login__panel {
	background: #0d1118;
	border: 1px solid #262d38;
	border-radius: 8px;
	box-shadow: 0 24px 55px rgba(0, 0, 0, 0.38);
	color: #f8fafc;
	max-width: 420px;
	overflow: hidden;
	padding: 30px;
	position: relative;
	width: 100%;
}

.ipbyte-login__panel::before {
	background: linear-gradient(90deg, #d92027 0 46%, #0786c8 46% 100%);
	content: "";
	height: 4px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.ipbyte-login__panel--register {
	max-width: 540px;
}

.ipbyte-login__panel--access {
	max-width: 460px;
}

.ipbyte-login__panel h2 {
	color: #ffffff;
	font-size: 30px;
	font-weight: 850;
	line-height: 1.15;
	margin: 8px 0 22px;
	text-align: center;
}

.ipbyte-login-brand {
	align-items: center;
	background: #06080c;
	border: 1px solid #253040;
	border-radius: 8px;
	display: flex;
	gap: 14px;
	justify-content: flex-start;
	margin: 0 auto 18px;
	min-height: 94px;
	padding: 14px 16px;
	width: 100%;
}

.ipbyte-login-brand img {
	flex: 0 0 auto;
	display: block;
	height: auto;
	max-height: 64px;
	max-width: 92px;
	object-fit: contain;
}

.ipbyte-login-brand strong {
	color: #ffffff;
	display: block;
	font-size: 19px;
	font-weight: 850;
	line-height: 1.15;
	margin: 0;
	text-transform: uppercase;
}

.ipbyte-login__panel label {
	color: #e8edf5;
	display: block;
	font-size: 14px;
	font-weight: 750;
	margin-bottom: 6px;
}

.ipbyte-login__panel input[type="text"],
.ipbyte-login__panel input[type="email"],
.ipbyte-login__panel input[type="tel"],
.ipbyte-login__panel input[type="number"],
.ipbyte-login__panel input[type="password"] {
	background: #f8fafc;
	border: 1px solid #3a4352;
	border-radius: 6px;
	color: #121722;
	font-size: 15px;
	min-height: 44px;
	padding: 9px 11px;
	width: 100%;
}

.ipbyte-login__panel input[type="text"]:focus,
.ipbyte-login__panel input[type="email"]:focus,
.ipbyte-login__panel input[type="tel"]:focus,
.ipbyte-login__panel input[type="number"]:focus,
.ipbyte-login__panel input[type="password"]:focus {
	border-color: #0786c8;
	box-shadow: 0 0 0 3px rgba(7, 134, 200, 0.24);
	outline: none;
}

.ipbyte-login__panel .login-submit .button {
	background: #d92027;
	border: 1px solid #d92027;
	border-radius: 6px;
	color: #ffffff;
	cursor: pointer;
	font-size: 15px;
	font-weight: 800;
	min-height: 44px;
	padding: 10px 16px;
	width: 100%;
}

.ipbyte-login__panel .login-submit .button:hover,
.ipbyte-login__panel .login-submit .button:focus {
	background: #0786c8;
	border-color: #0786c8;
	color: #ffffff;
}

.ipbyte-login__panel .login-remember {
	align-items: center;
	color: #c8d0dc;
	display: flex;
	gap: 8px;
}

.ipbyte-login .ipbyte-notice {
	border-radius: 6px;
	margin-bottom: 16px;
}

.ipbyte-login .ipbyte-btn--primary {
	background: #d92027;
	border-color: #d92027;
	color: #ffffff;
}

.ipbyte-login .ipbyte-btn--primary:hover,
.ipbyte-login .ipbyte-btn--primary:focus {
	background: #0786c8;
	border-color: #0786c8;
	color: #ffffff;
}

.ipbyte-register-form {
	display: grid;
	gap: 13px;
}

.ipbyte-register-form .ipbyte-btn {
	margin-top: 4px;
	width: 100%;
}

.ipbyte-captcha {
	background: var(--ipbyte-bg);
	border: 1px solid var(--ipbyte-border);
	border-radius: 8px;
	grid-template-columns: 1fr 110px;
	padding: 12px;
}

.ipbyte-captcha > span {
	grid-column: 1 / -1;
}

.ipbyte-captcha strong {
	align-items: center;
	display: flex;
	font-size: 18px;
	font-weight: 850;
	min-height: 44px;
}

.ipbyte-recaptcha {
	background: var(--ipbyte-bg);
	border: 1px solid var(--ipbyte-border);
	border-radius: 8px;
	overflow-x: auto;
	padding: 12px;
}

.ipbyte-recaptcha > span {
	margin-bottom: 8px;
}

.ipbyte-hp {
	height: 0;
	left: -9999px;
	overflow: hidden;
	position: absolute;
	width: 0;
}

.ipbyte-auth-switch {
	align-items: center;
	border-top: 1px solid #2a3240;
	display: flex;
	flex-wrap: wrap;
	font-size: 14px;
	gap: 8px;
	justify-content: center;
	margin-top: 18px;
	padding-top: 16px;
}

.ipbyte-auth-switch span {
	color: #aeb8c7;
}

.ipbyte-auth-switch a {
	color: #54b7f0;
	font-weight: 850;
}

.ipbyte-auth-alt {
	display: flex;
	flex-wrap: wrap;
	font-size: 13px;
	gap: 10px;
	justify-content: center;
	margin-top: 12px;
}

.ipbyte-auth-alt a {
	color: #aeb8c7;
	font-weight: 750;
}

.ipbyte-form-shell,
.ipbyte-detail {
	padding: 20px;
}

.ipbyte-form__grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ipbyte-field {
	display: grid;
	gap: 7px;
}

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

.ipbyte-field > span {
	color: var(--ipbyte-text);
	font-size: 14px;
	font-weight: 800;
}

.ipbyte-login .ipbyte-field > span {
	color: #e8edf5;
}

.ipbyte-login .ipbyte-captcha,
.ipbyte-login .ipbyte-recaptcha {
	background: #111823;
	border-color: #2b3545;
}

.ipbyte-login .ipbyte-captcha strong {
	color: #ffffff;
}

.ipbyte-field input,
.ipbyte-field textarea,
.ipbyte-field select {
	background: #ffffff;
	border: 1px solid var(--ipbyte-border);
	border-radius: 6px;
	color: var(--ipbyte-text);
	font: inherit;
	font-size: 15px;
	line-height: 1.45;
	min-height: 44px;
	padding: 10px 12px;
	width: 100%;
}

.ipbyte-field textarea {
	resize: vertical;
}

.ipbyte-field input:focus,
.ipbyte-field textarea:focus,
.ipbyte-field select:focus {
	border-color: var(--ipbyte-accent);
	box-shadow: 0 0 0 3px rgba(8, 127, 192, 0.14);
	outline: none;
}

.ipbyte-filters {
	align-items: end;
	background: var(--ipbyte-surface);
	border: 1px solid var(--ipbyte-border);
	border-radius: 8px;
	display: grid;
	gap: 12px;
	grid-template-columns: minmax(190px, 1.15fr) minmax(135px, 0.7fr) minmax(145px, 0.75fr) minmax(130px, 0.65fr) minmax(130px, 0.65fr) auto;
	margin: 0 0 18px;
	padding: 16px;
}

.ipbyte-filters__actions {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: flex-end;
}

.ipbyte-upload {
	border: 1px dashed #aab4c1;
	border-radius: 8px;
	cursor: pointer;
	min-height: 128px;
	padding: 15px;
	position: relative;
}

.ipbyte-upload input[type="file"] {
	cursor: pointer;
	height: 100%;
	inset: 0;
	opacity: 0;
	position: absolute;
	width: 100%;
}

.ipbyte-upload strong {
	align-items: center;
	color: var(--ipbyte-accent-dark);
	display: inline-flex;
	font-size: 15px;
	gap: 9px;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.ipbyte-upload img {
	border-radius: 6px;
	display: block;
	height: auto;
	margin-top: 12px;
	max-height: 240px;
	max-width: 100%;
	object-fit: contain;
}

.ipbyte-upload--compact {
	min-height: 96px;
}

.ipbyte-signature-field {
	gap: 9px;
}

.ipbyte-signature-pad {
	background: #ffffff;
	border: 1px dashed #aab4c1;
	border-radius: 8px;
	min-height: 220px;
	overflow: hidden;
}

.ipbyte-signature-pad canvas {
	background: #ffffff;
	display: block;
	height: 220px;
	touch-action: none;
	width: 100%;
}

.ipbyte-signature-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ipbyte-signature-actions small {
	color: var(--ipbyte-muted);
	font-size: 12px;
	line-height: 1.35;
}

.ipbyte-form__footer {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	margin-top: 18px;
}

.ipbyte-detail__head {
	align-items: center;
	display: grid;
	gap: 12px;
	grid-template-columns: auto minmax(0, 1fr) auto;
	margin-bottom: 18px;
}

.ipbyte-back {
	align-items: center;
	color: var(--ipbyte-accent-dark);
	display: inline-flex;
	font-size: 14px;
	font-weight: 800;
	gap: 5px;
}

.ipbyte-detail__head h3 {
	font-size: 26px;
	font-weight: 850;
	line-height: 1.1;
}

.ipbyte-detail__grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ipbyte-info {
	padding: 18px;
}

.ipbyte-info h4 {
	font-size: 16px;
	font-weight: 850;
	line-height: 1.25;
	margin-bottom: 12px;
}

.ipbyte-info__row {
	border-top: 1px solid var(--ipbyte-soft);
	display: grid;
	gap: 8px;
	grid-template-columns: 120px minmax(0, 1fr);
	padding: 10px 0;
}

.ipbyte-info__row:first-of-type {
	border-top: 0;
	padding-top: 0;
}

.ipbyte-info__row span {
	color: var(--ipbyte-muted);
	font-size: 13px;
	font-weight: 750;
}

.ipbyte-info__row strong {
	font-size: 14px;
	font-weight: 750;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.ipbyte-longtext {
	color: var(--ipbyte-text);
	font-size: 15px;
	line-height: 1.55;
	overflow-wrap: anywhere;
}

.ipbyte-info--media {
	grid-column: 1 / -1;
}

.ipbyte-info--timeline {
	grid-column: 1 / -1;
}

.ipbyte-info--messages {
	grid-column: 1 / -1;
}

.ipbyte-info--rating {
	grid-column: 1 / -1;
}

.ipbyte-detail > .ipbyte-info--rating {
	margin-bottom: 14px;
}

.ipbyte-rating-summary {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 10px;
}

.ipbyte-rating-summary strong {
	color: var(--ipbyte-text);
	font-size: 16px;
	font-weight: 850;
}

.ipbyte-stars {
	color: #f4b400;
	display: inline-flex;
	font-size: 22px;
	gap: 2px;
	line-height: 1;
}

.ipbyte-rating-date {
	color: var(--ipbyte-muted);
	font-size: 13px;
	font-weight: 700;
	margin-top: 10px;
}

.ipbyte-rating-form {
	display: grid;
	gap: 14px;
}

.ipbyte-rating-stars {
	display: inline-flex;
	flex-direction: row-reverse;
	gap: 4px;
	justify-content: flex-end;
	width: fit-content;
}

.ipbyte-rating-stars input {
	height: 1px;
	opacity: 0;
	position: absolute;
	width: 1px;
}

.ipbyte-rating-stars label {
	color: #b7bfcb;
	cursor: pointer;
	font-size: 34px;
	line-height: 1;
	transition: color 0.15s ease, transform 0.15s ease;
}

.ipbyte-rating-stars label:hover,
.ipbyte-rating-stars label:hover ~ label,
.ipbyte-rating-stars input:checked ~ label {
	color: #f4b400;
}

.ipbyte-rating-stars label:hover {
	transform: translateY(-1px);
}

.ipbyte-message-empty {
	background: var(--ipbyte-bg);
	border: 1px dashed var(--ipbyte-border);
	border-radius: 6px;
	color: var(--ipbyte-muted);
	font-size: 14px;
	font-weight: 700;
	padding: 14px;
}

.ipbyte-message-list {
	display: grid;
	gap: 10px;
	margin-bottom: 14px;
}

.ipbyte-message {
	background: var(--ipbyte-bg);
	border: 1px solid var(--ipbyte-border);
	border-radius: 8px;
	display: grid;
	gap: 8px;
	padding: 13px;
}

.ipbyte-message--support {
	background: #eef8f6;
	border-color: #b7dcd7;
}

.ipbyte-message__head {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: space-between;
}

.ipbyte-message__head strong {
	font-size: 14px;
	font-weight: 850;
}

.ipbyte-message__head span {
	color: var(--ipbyte-muted);
	font-size: 12px;
	font-weight: 700;
	text-align: right;
}

.ipbyte-message p {
	font-size: 14px;
	line-height: 1.5;
	overflow-wrap: anywhere;
}

.ipbyte-message-img {
	border: 1px solid var(--ipbyte-border);
	border-radius: 6px;
	display: block;
	height: auto;
	max-height: 260px;
	max-width: 100%;
	object-fit: contain;
}

.ipbyte-comment-form {
	border-top: 1px solid var(--ipbyte-border);
	display: grid;
	gap: 12px;
	margin-top: 14px;
	padding-top: 14px;
}

.ipbyte-timeline {
	display: grid;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ipbyte-timeline__item {
	display: grid;
	gap: 12px;
	grid-template-columns: 18px minmax(0, 1fr);
	padding: 0 0 16px;
	position: relative;
}

.ipbyte-timeline__item::before {
	background: var(--ipbyte-border);
	content: "";
	height: 100%;
	left: 8px;
	position: absolute;
	top: 14px;
	width: 2px;
}

.ipbyte-timeline__item:last-child {
	padding-bottom: 0;
}

.ipbyte-timeline__item:last-child::before {
	display: none;
}

.ipbyte-timeline__dot {
	background: var(--ipbyte-accent);
	border: 3px solid #e7f4fb;
	border-radius: 999px;
	display: block;
	height: 18px;
	margin-top: 2px;
	position: relative;
	width: 18px;
	z-index: 1;
}

.ipbyte-timeline__item strong {
	display: block;
	font-size: 14px;
	font-weight: 850;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.ipbyte-timeline__item span:not(.ipbyte-timeline__dot) {
	color: var(--ipbyte-muted);
	display: block;
	font-size: 13px;
	line-height: 1.35;
	margin-top: 3px;
	overflow-wrap: anywhere;
}

.ipbyte-media-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ipbyte-media-item {
	display: grid;
	gap: 8px;
	min-width: 0;
}

.ipbyte-media-img,
.ipbyte-media-empty {
	background: var(--ipbyte-bg);
	border: 1px solid var(--ipbyte-border);
	border-radius: 6px;
	display: block;
	width: 100%;
}

.ipbyte-media-img {
	height: auto;
	max-height: 420px;
	object-fit: contain;
}

.ipbyte-media-empty {
	align-items: center;
	display: flex;
	min-height: 220px;
	justify-content: center;
}

.ipbyte-media-empty .dashicons {
	color: var(--ipbyte-muted);
	font-size: 42px;
	height: 42px;
	line-height: 42px;
	width: 42px;
}

@media (max-width: 880px) {
	.ipbyte-portal__header {
		align-items: stretch;
		flex-direction: column;
	}

	.ipbyte-portal__actions {
		justify-content: flex-start;
	}

	.ipbyte-metrics {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ipbyte-order-card__body,
	.ipbyte-detail__grid,
	.ipbyte-media-grid,
	.ipbyte-filters {
		grid-template-columns: 1fr;
	}

	.ipbyte-filters__actions {
		justify-content: flex-start;
	}
}

@media (max-width: 620px) {
	.ipbyte-portal {
		padding: 16px 10px;
	}

	.ipbyte-portal__header,
	.ipbyte-form-shell,
	.ipbyte-detail,
	.ipbyte-login__panel {
		padding: 16px;
	}

	.ipbyte-login-brand {
		gap: 10px;
		min-height: 80px;
		padding: 12px;
	}

	.ipbyte-login-brand img {
		max-height: 54px;
		max-width: 76px;
	}

	.ipbyte-login-brand strong {
		font-size: 16px;
	}

	.ipbyte-portal__header h2 {
		font-size: 24px;
	}

	.ipbyte-portal__actions,
	.ipbyte-form__footer,
	.ipbyte-filters__actions,
	.ipbyte-pagination {
		display: grid;
		grid-template-columns: 1fr;
		width: 100%;
	}

	.ipbyte-btn {
		white-space: normal;
		width: 100%;
	}

	.ipbyte-metrics,
	.ipbyte-form__grid {
		grid-template-columns: 1fr;
	}

	.ipbyte-captcha {
		grid-template-columns: 1fr;
	}

	.ipbyte-detail__head {
		align-items: start;
		grid-template-columns: 1fr;
	}

	.ipbyte-info__row {
		grid-template-columns: 1fr;
	}

	.ipbyte-status {
		width: fit-content;
	}

	.ipbyte-message__head {
		align-items: start;
		flex-direction: column;
		gap: 4px;
	}
}
