.c26r,
.c26r * {
	box-sizing: border-box;
}

.c26r {
	--c26r-ink: #f7fbff;
	--c26r-muted: #b9c8dc;
	--c26r-panel: rgba(5, 18, 37, 0.86);
	--c26r-panel-strong: rgba(8, 27, 55, 0.94);
	--c26r-line: rgba(207, 225, 245, 0.18);
	--c26r-blue: #2387ff;
	--c26r-blue-deep: #075ec6;
	--c26r-green: #26d37d;
	--c26r-amber: #f2b84b;
	position: relative;
	overflow: hidden;
	width: min(100%, 1040px);
	margin: 28px auto;
	padding: clamp(18px, 4vw, 34px);
	color: var(--c26r-ink);
	font-family: inherit;
	background:
		linear-gradient(125deg, rgba(3, 13, 29, 0.97), rgba(8, 42, 82, 0.96) 54%, rgba(3, 24, 33, 0.98)),
		repeating-linear-gradient(90deg, rgba(38, 211, 125, 0.12) 0 1px, transparent 1px 72px);
	border: 1px solid var(--c26r-line);
	border-radius: 8px;
	box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
}

.c26r::before {
	position: absolute;
	inset: 0;
	content: "";
	pointer-events: none;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%),
		linear-gradient(90deg, transparent, rgba(242, 184, 75, 0.08), transparent);
	opacity: 0.72;
}

.c26r > * {
	position: relative;
	z-index: 1;
}

.c26r__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 22px;
}

.c26r__kicker,
.c26r__user {
	margin: 0;
	color: var(--c26r-muted);
	font-size: 0.94rem;
	line-height: 1.5;
	letter-spacing: 0;
}

.c26r__kicker {
	color: var(--c26r-green);
	font-weight: 700;
	text-transform: uppercase;
}

.c26r__title {
	margin: 4px 0 3px;
	color: var(--c26r-ink);
	font-size: clamp(1.55rem, 3.2vw, 2.35rem);
	line-height: 1.12;
	letter-spacing: 0;
}

.c26r__cooldown {
	flex: 0 0 auto;
	min-width: 190px;
	padding: 10px 12px;
	color: #071322;
	font-weight: 800;
	text-align: center;
	background: linear-gradient(135deg, #f7fbff, #dcecff);
	border: 1px solid rgba(255, 255, 255, 0.62);
	border-radius: 8px;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.c26r-page-actions {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 10px;
}

.c26r__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 16px;
}

.c26r-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	min-width: 150px;
	padding: 12px 18px;
	border: 1px solid transparent;
	border-radius: 8px;
	font: inherit;
	font-weight: 800;
	line-height: 1.1;
	text-align: center;
	letter-spacing: 0;
	cursor: pointer;
	transition: transform 140ms ease, border-color 140ms ease, background-color 140ms ease, opacity 140ms ease;
}

.c26r-button:active {
	transform: translateY(1px);
}

.c26r-button:disabled {
	cursor: not-allowed;
	opacity: 0.58;
	transform: none;
}

.c26r-button--primary {
	color: #ffffff;
	background: linear-gradient(135deg, var(--c26r-blue), var(--c26r-blue-deep));
	box-shadow: 0 12px 26px rgba(35, 135, 255, 0.34);
}

.c26r-button--primary:hover:not(:disabled) {
	border-color: rgba(255, 255, 255, 0.5);
}

.c26r-button--secondary {
	color: #071322;
	background: #f8fbff;
	border-color: rgba(255, 255, 255, 0.72);
}

.c26r-button--secondary:hover:not(:disabled) {
	background: #eaf3ff;
}

.c26r-button--admin {
	color: #071322;
	background: var(--c26r-amber);
	border-color: rgba(255, 255, 255, 0.42);
}

.c26r-button--admin:hover:not(:disabled) {
	background: #ffd27a;
}

.c26r-button--copy {
	min-height: 40px;
	min-width: 0;
	padding: 10px 14px;
	color: #071322;
	background: linear-gradient(135deg, #26d37d, #abf2c8);
	border-color: rgba(255, 255, 255, 0.55);
	box-shadow: 0 10px 22px rgba(38, 211, 125, 0.2);
}

.c26r-button--copy[hidden] {
	display: none;
}

.c26r-button--copy:hover:not(:disabled) {
	background: linear-gradient(135deg, #4be297, #d5ffe5);
}

.c26r__notice {
	min-height: 22px;
	margin: 2px 0 16px;
	color: var(--c26r-muted);
	font-size: 0.95rem;
	line-height: 1.45;
}

.c26r__notice[data-tone="success"] {
	color: #91f0bd;
}

.c26r__notice[data-tone="error"] {
	color: #ffb4a8;
}

.c26r-page-admin {
	margin: 0 0 18px;
	padding: clamp(14px, 3vw, 20px);
	color: var(--c26r-ink);
	background: rgba(3, 14, 28, 0.94);
	border: 1px solid rgba(242, 184, 75, 0.38);
	border-radius: 8px;
}

.c26r-page-admin[hidden] {
	display: none;
}

.c26r-page-admin__head,
.c26r-admin-head,
.c26r-admin-repeat__top,
.c26r-page-admin__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.c26r-page-admin__head {
	margin-bottom: 16px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--c26r-line);
}

.c26r-page-admin__head h3,
.c26r-admin-panel h4 {
	margin: 0;
	color: var(--c26r-ink);
	line-height: 1.3;
	letter-spacing: 0;
}

.c26r-page-admin__close,
.button-link-delete {
	padding: 7px 9px;
	color: #ffbeb4;
	font: inherit;
	font-weight: 900;
	line-height: 1;
	background: transparent;
	border: 1px solid rgba(255, 190, 180, 0.35);
	border-radius: 8px;
	cursor: pointer;
}

.c26r-admin-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.c26r-admin-panel {
	margin: 0 0 14px;
	padding: 14px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--c26r-line);
	border-radius: 8px;
}

.c26r-admin-panel--danger {
	background: rgba(255, 76, 88, 0.08);
	border-color: rgba(255, 126, 126, 0.34);
}

.c26r-admin-panel h4 {
	margin-bottom: 12px;
	color: var(--c26r-amber);
}

.c26r-admin-panel p {
	margin: 0 0 12px;
	color: var(--c26r-muted);
	font-size: 0.92rem;
	line-height: 1.45;
}

.c26r-admin-panel label,
.c26r-admin-repeat label {
	display: grid;
	gap: 6px;
	margin: 0 0 12px;
	color: var(--c26r-muted);
	font-size: 0.92rem;
	font-weight: 800;
}

.c26r-admin-panel input,
.c26r-admin-panel textarea,
.c26r-admin-repeat input,
.c26r-admin-repeat textarea {
	width: 100%;
	min-height: 40px;
	padding: 9px 10px;
	color: #071322;
	font: inherit;
	background: #f8fbff;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 8px;
}

.c26r-admin-panel textarea,
.c26r-admin-repeat textarea {
	min-height: 110px;
	resize: vertical;
}

.c26r-admin-check {
	display: flex !important;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 9px !important;
	color: var(--c26r-ink) !important;
}

.c26r-admin-check input {
	width: 18px !important;
	min-height: 18px !important;
}

.c26r-admin-repeat {
	margin: 0 0 12px;
	padding: 12px;
	background: rgba(0, 0, 0, 0.22);
	border: 1px solid var(--c26r-line);
	border-radius: 8px;
}

.c26r-admin-repeat__top {
	margin-bottom: 10px;
	color: var(--c26r-ink);
}

.c26r-admin-columns {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(120px, 0.7fr);
	gap: 10px;
}

.c26r-admin-columns--three {
	grid-template-columns: minmax(0, 2fr) minmax(120px, 1fr) minmax(120px, 1fr);
}

.c26r-mini-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 8px 10px;
	color: #071322;
	font: inherit;
	font-size: 0.88rem;
	font-weight: 900;
	line-height: 1;
	background: #f8fbff;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 8px;
	cursor: pointer;
	text-decoration: none;
}

.c26r-button--danger {
	color: #ffffff;
	background: #c52233;
	box-shadow: 0 10px 24px rgba(197, 34, 51, 0.28);
}

.c26r-button--danger:hover:not(:disabled) {
	background: #e03646;
}

.c26r-page-admin__actions {
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-top: 12px;
}

.c26r-result,
.c26r-history {
	background: var(--c26r-panel);
	border: 1px solid var(--c26r-line);
	border-radius: 8px;
}

.c26r-result {
	position: relative;
	overflow: hidden;
	margin: 0 0 18px;
	padding: clamp(14px, 3vw, 22px);
	background:
		linear-gradient(135deg, rgba(10, 40, 78, 0.96), rgba(4, 18, 35, 0.97)),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 64px);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 34px rgba(0, 0, 0, 0.22);
}

.c26r-result[hidden] {
	display: none;
}

.c26r-result.is-fresh {
	animation: c26r-result-pop 420ms ease-out;
}

.c26r-result::before {
	position: absolute;
	inset: 0;
	content: "";
	pointer-events: none;
	background:
		linear-gradient(90deg, transparent, rgba(242, 184, 75, 0.1), transparent),
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 45%);
}

.c26r-result > * {
	position: relative;
	z-index: 1;
}

.c26r-result__heading {
	margin-bottom: 8px;
	color: var(--c26r-amber);
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0;
}

.c26r-result__copy {
	display: flex;
	justify-content: flex-start;
	margin: 0 0 14px;
}

.c26r-result__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 0;
}

.c26r-result__grid > div {
	min-width: 0;
	padding: 11px 12px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 8px;
}

.c26r-result__primary {
	grid-column: 1 / -1;
	padding: 15px !important;
	background: linear-gradient(135deg, rgba(38, 211, 125, 0.14), rgba(35, 135, 255, 0.11)) !important;
	border-color: rgba(38, 211, 125, 0.24) !important;
}

.c26r-result__wide {
	grid-column: 1 / -1;
}

.c26r-result dt {
	margin: 0 0 4px;
	color: var(--c26r-muted);
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1.25;
	text-transform: uppercase;
	letter-spacing: 0;
}

.c26r-result dd {
	margin: 0;
	overflow-wrap: anywhere;
	color: var(--c26r-ink);
	font-size: 1rem;
	font-weight: 760;
	line-height: 1.35;
}

.c26r-result__primary dd {
	font-size: clamp(1.45rem, 4.2vw, 2.15rem);
	font-weight: 900;
	line-height: 1.05;
}

.c26r-badge {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	max-width: 100%;
	padding: 6px 9px;
	color: #071322 !important;
	font-size: 0.9rem !important;
	font-weight: 900 !important;
	line-height: 1.1 !important;
	background: #dcecff;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 999px;
}

.c26r-badge[data-tone="grass"] {
	background: #a8f0c3;
}

.c26r-badge[data-tone="dry"] {
	background: #ffd27a;
}

.c26r-badge[data-tone="dusty"] {
	background: #f4ad8d;
}

.c26r-badge[data-tone="standard"],
.c26r-badge[data-tone="none"] {
	background: #dcecff;
}

.c26r-badge[data-tone="heavy"] {
	color: #ffffff !important;
	background: #d92d20;
}

.c26r-badge[data-tone="light"],
.c26r-badge[data-tone="medium"] {
	background: #f7d77f;
}

.c26r-badge[data-tone="soft"] {
	background: #b9f6cf;
}

.c26r-history {
	padding: 0;
	overflow: hidden;
}

.c26r-history__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 18px;
	background: var(--c26r-panel-strong);
	border-bottom: 1px solid var(--c26r-line);
}

.c26r-history__tools {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	min-width: 0;
}

.c26r-history__head h3 {
	margin: 0;
	color: var(--c26r-ink);
	font-size: 1.08rem;
	line-height: 1.3;
	letter-spacing: 0;
}

.c26r-history__head span {
	color: var(--c26r-green);
	font-size: 0.86rem;
	font-weight: 800;
	text-align: right;
}

.c26r-history__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 8px 10px;
	color: #071322;
	font-size: 0.86rem;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	background: var(--c26r-amber);
	border-radius: 8px;
	white-space: nowrap;
}

.c26r-history__link:hover {
	color: #071322;
	background: #ffd27a;
}

.c26r-history__footer {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	padding: 14px 18px 18px;
	background: rgba(255, 255, 255, 0.035);
	border-top: 1px solid var(--c26r-line);
}

.c26r-history__view {
	min-width: 190px;
}

.c26r-history__load {
	display: flex;
	justify-content: center;
	margin-top: 16px;
}

.c26r-history__load [hidden] {
	display: none;
}

.c26r-full-history {
	margin: 18px 0 0;
	padding: clamp(14px, 3vw, 20px);
	background: rgba(3, 14, 28, 0.94);
	border: 1px solid rgba(207, 225, 245, 0.18);
	border-radius: 8px;
}

.c26r-full-history[hidden] {
	display: none;
}

.c26r-history-filters {
	margin: 0 0 14px;
	padding: 14px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--c26r-line);
	border-radius: 8px;
}

.c26r-history-filters__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}

.c26r-history-filters__head h3 {
	margin: 0;
	color: var(--c26r-amber);
	font-size: 1rem;
	line-height: 1.3;
	letter-spacing: 0;
}

.c26r-history-filters__grid {
	display: grid;
	grid-template-columns: minmax(220px, 1fr) minmax(180px, 0.8fr);
	gap: 12px;
	align-items: start;
}

.c26r-ip-filters__grid {
	grid-template-columns: minmax(220px, 1.35fr) repeat(3, minmax(150px, 0.7fr));
	align-items: end;
}

.c26r-history-filters label {
	display: grid;
	gap: 6px;
	margin: 0;
	color: var(--c26r-muted);
	font-size: 0.9rem;
	font-weight: 800;
}

.c26r-history-filters select,
.c26r-history-filters input {
	width: 100%;
	padding: 8px 10px;
	color: #071322;
	font: inherit;
	background: #f8fbff;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 8px;
}

.c26r-history-filters select[size] {
	min-height: 148px;
	overflow-y: auto;
}

.c26r-ip-filters__actions {
	display: flex;
	align-items: end;
	height: 100%;
}

.c26r-table-wrap {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.c26r-table {
	width: 100%;
	min-width: 820px;
	margin: 0;
	color: var(--c26r-ink);
	border-collapse: collapse;
	background: transparent;
}

.c26r-table--ip {
	min-width: 1580px;
}

.c26r-table th,
.c26r-table td {
	padding: 12px 14px;
	border: 0;
	border-bottom: 1px solid var(--c26r-line);
	text-align: left;
	vertical-align: middle;
	white-space: nowrap;
}

.c26r-table th {
	color: #dcecff;
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
	background: rgba(35, 135, 255, 0.18);
}

.c26r-table td {
	color: #edf6ff;
	font-size: 0.94rem;
}

.c26r-table__clip {
	display: inline-block;
	max-width: 260px;
	overflow: hidden;
	text-overflow: ellipsis;
	vertical-align: bottom;
	white-space: nowrap;
}

.c26r-ip-code {
	color: #071322;
	padding: 3px 6px;
	background: #dcecff;
	border-radius: 6px;
	font: 800 0.86rem/1.25 ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
}

.c26r-delete-entry {
	min-height: 30px;
	padding: 7px 10px;
	color: #ffffff;
	font: inherit;
	font-size: 0.82rem;
	font-weight: 900;
	line-height: 1;
	background: #b42318;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 8px;
	cursor: pointer;
}

.c26r-delete-entry:hover:not(:disabled) {
	background: #d92d20;
}

.c26r-delete-entry:disabled {
	cursor: not-allowed;
	opacity: 0.65;
}

.c26r-table tbody tr:nth-child(even) {
	background: rgba(255, 255, 255, 0.04);
}

.c26r-table__empty {
	color: var(--c26r-muted);
	text-align: center !important;
}

.c26r-table__new {
	animation: c26r-row-flash 1400ms ease-out;
}

.c26r-login {
	width: min(100%, 720px);
	margin: 28px auto;
	padding: clamp(20px, 4vw, 30px);
	color: #f7fbff;
	text-align: center;
	background: linear-gradient(135deg, #051225, #0a3463);
	border: 1px solid rgba(207, 225, 245, 0.18);
	border-radius: 8px;
}

.c26r-login h2 {
	margin: 0 0 8px;
	color: #ffffff;
	font-size: clamp(1.35rem, 3vw, 2rem);
	line-height: 1.18;
	letter-spacing: 0;
}

.c26r-login p {
	margin: 0 0 18px;
	color: #c7d8eb;
}

.c26r-login__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 11px 18px;
	color: #071322;
	font-weight: 800;
	text-decoration: none;
	background: #f8fbff;
	border-radius: 8px;
}

.c26r-login__button:hover {
	color: #071322;
	background: #eaf3ff;
}

@keyframes c26r-row-flash {
	0% {
		background: rgba(38, 211, 125, 0.26);
	}

	100% {
		background: transparent;
	}
}

@keyframes c26r-result-pop {
	0% {
		opacity: 0.62;
		transform: translateY(8px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 720px) {
	.c26r {
		width: 100%;
		margin: 0 auto 18px;
		padding: 14px 12px 104px;
		overflow: visible;
		border-radius: 0;
	}

	.c26r__top {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
		margin-bottom: 12px;
		padding: 12px;
		background: rgba(0, 0, 0, 0.18);
		border: 1px solid var(--c26r-line);
		border-radius: 14px;
	}

	.c26r-page-actions {
		display: grid;
		grid-template-columns: 1fr;
		width: 100%;
	}

	.c26r__title {
		margin-top: 2px;
		font-size: 1.46rem;
	}

	.c26r__user,
	.c26r__kicker {
		font-size: 0.82rem;
		line-height: 1.35;
	}

	.c26r__cooldown {
		width: 100%;
		min-width: 0;
		min-height: 36px;
		padding: 8px 10px;
		font-size: 0.9rem;
		border-radius: 999px;
	}

	.c26r__actions {
		display: grid;
		position: sticky;
		bottom: max(10px, env(safe-area-inset-bottom));
		z-index: 30;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
		margin: 0 0 14px;
		padding: 10px;
		background: rgba(2, 13, 27, 0.88);
		border: 1px solid rgba(207, 225, 245, 0.22);
		border-radius: 16px;
		box-shadow: 0 16px 34px rgba(0, 0, 0, 0.36);
		backdrop-filter: blur(14px);
	}

	.c26r-button {
		width: 100%;
		min-width: 0;
		min-height: 40px;
		padding: 10px 11px;
		font-size: 0.9rem;
		border-radius: 12px;
	}

	.c26r__actions .c26r-button--primary {
		grid-column: 1 / -1;
	}

	.c26r-result {
		margin-bottom: 16px;
		padding: 12px;
		border-radius: 16px;
		background:
			linear-gradient(140deg, rgba(6, 37, 66, 0.98), rgba(4, 16, 32, 0.98)),
			repeating-linear-gradient(90deg, rgba(38, 211, 125, 0.08) 0 1px, transparent 1px 42px);
	}

	.c26r-result__heading {
		display: inline-flex;
		margin-bottom: 10px;
		padding: 5px 8px;
		color: #071322;
		font-size: 0.72rem;
		background: var(--c26r-amber);
		border-radius: 999px;
	}

	.c26r-result__copy {
		margin-bottom: 10px;
	}

	.c26r-button--copy {
		min-height: 38px;
		padding: 9px 12px;
		font-size: 0.9rem;
	}

	.c26r-result__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}

	.c26r-result__grid > div {
		display: block;
		padding: 10px;
		background: rgba(255, 255, 255, 0.075);
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 12px;
	}

	.c26r-result__primary {
		grid-column: 1 / -1;
		padding: 14px !important;
		background: linear-gradient(135deg, rgba(38, 211, 125, 0.17), rgba(35, 135, 255, 0.13)) !important;
		border: 1px solid rgba(38, 211, 125, 0.24) !important;
		border-radius: 14px !important;
	}

	.c26r-result__primary dd {
		font-size: 1.34rem;
		line-height: 1.05;
		text-align: left;
	}

	.c26r-result__grid > div:last-child {
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.c26r-result__wide {
		grid-column: 1 / -1;
	}

	.c26r-result dt {
		margin: 0 0 5px;
		font-size: 0.72rem;
		line-height: 1.15;
	}

	.c26r-result dd {
		font-size: 0.94rem;
		line-height: 1.18;
		text-align: left;
	}

	.c26r-badge {
		padding: 5px 8px;
		font-size: 0.82rem !important;
	}

	.c26r-admin-grid,
	.c26r-admin-columns,
	.c26r-admin-columns--three,
	.c26r-history-filters__grid {
		grid-template-columns: 1fr;
	}

	.c26r-page-admin__head,
	.c26r-admin-head,
	.c26r-page-admin__actions,
	.c26r-history-filters__head {
		align-items: stretch;
		flex-direction: column;
	}

	.c26r-history__head {
		align-items: flex-start;
		flex-direction: column;
		padding: 13px;
	}

	.c26r-history__tools {
		align-items: flex-start;
		flex-direction: column;
		width: 100%;
	}

	.c26r-history__head span {
		text-align: left;
	}

	.c26r-history__footer {
		padding: 12px;
	}

	.c26r-history__view {
		width: 100%;
		min-width: 0;
	}

	.c26r-table-wrap {
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.c26r-table {
		display: table;
		min-width: 820px;
	}

	.c26r-table--ip {
		min-width: 1580px;
	}

	.c26r-table thead {
		display: table-header-group;
	}

	.c26r-table tbody {
		display: table-row-group;
	}

	.c26r-table tr {
		display: table-row;
	}

	.c26r-table th,
	.c26r-table td {
		display: table-cell;
		padding: 10px 12px;
		white-space: nowrap;
	}

	.c26r-delete-entry {
		min-height: 34px;
	}
}
