/**
 * Calendanse — Mes retours bêta V2.1 (tableau de bord visuel).
 */

.cdfb-mr {
	--cdfb-night: var(--cd-brand-night, #0b1f4d);
	--cdfb-violet: var(--cd-brand-violet, #6a3fb5);
	--cdfb-bg: #f7f5fb;
	--cdfb-card: #ffffff;
	--cdfb-border: rgba(11, 31, 77, 0.14);
	--cdfb-muted: #4a5568;
	--cdfb-ok: #166534;
	--cdfb-warn: #9a3412;
	--cdfb-ko: #991b1b;
	--cdfb-blue: #1d4ed8;
	--cdfb-gray: #334155;
	--cdfb-orange: #c05612;
	box-sizing: border-box;
	max-width: 52rem;
	margin: 0 auto;
	padding: 0.25rem 0 1.5rem;
	color: var(--cdfb-night);
	font-size: 1rem;
	line-height: 1.5;
	overflow-wrap: anywhere;
	overflow-x: hidden;
}

.cdfb-mr *,
.cdfb-mr *::before,
.cdfb-mr *::after {
	box-sizing: border-box;
}

.cdfb-mr__lead,
.cdfb-mr__hint {
	margin: 0 0 1rem;
	color: var(--cdfb-muted);
}

.cdfb-mr__hint {
	font-size: 0.92rem;
}

.cdfb-mr__banner {
	margin: 0 0 1rem;
	padding: 0.85rem 1rem;
	border-radius: 12px;
	font-weight: 600;
}

.cdfb-mr__banner--ok {
	background: #dcfce7;
	color: var(--cdfb-ok);
}

.cdfb-mr__banner--warn {
	background: #ffedd5;
	color: var(--cdfb-warn);
}

.cdfb-mr__form,
.cdfb-mr__card,
.cdfb-mr__empty,
.cdfb-mr--hub {
	max-width: 100%;
	overflow-x: clip;
}

.cdfb-mr__session {
	margin: 0 0 1rem;
}

.cdfb-mr__preview-bar {
	margin: 0 0 1rem;
	border: 1px solid rgba(201, 162, 39, 0.35);
	background: #fffbeb;
	border-radius: 12px;
	padding: 0.35rem 0.85rem 0.45rem;
	font-size: 0.9rem;
}

.cdfb-mr__preview-bar summary {
	cursor: pointer;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.75rem;
	align-items: baseline;
	min-height: 44px;
	list-style: none;
}

.cdfb-mr__preview-bar summary::-webkit-details-marker {
	display: none;
}

.cdfb-mr__preview-bar summary:focus-visible {
	outline: 3px solid #6a3fb5;
	outline-offset: 3px;
}

.cdfb-mr__preview-kicker {
	font-weight: 800;
	color: #7c5a12;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 0.72rem;
}

.cdfb-mr__preview-who {
	color: #0b1f4d;
	font-weight: 600;
}

.cdfb-mr__preview-more {
	margin-left: auto;
	font-size: 0.8rem;
	font-weight: 600;
	color: #7c5a12;
	text-decoration: underline;
}

.cdfb-mr__preview-bar p {
	margin: 0.35rem 0 0;
	color: #4a5568;
}

.cdfb-mr__verified {
	margin: 0 0 0.5rem;
}

.cdfb-mr__verified-label {
	display: block;
	font-size: 0.88rem;
	color: var(--cdfb-muted);
	font-weight: 600;
}

.cdfb-mr__toolbar-row {
	margin: 0.35rem 0 0;
}

.cdfb-mr__label {
	display: block;
	margin-bottom: 0.4rem;
	font-weight: 600;
}

.cdfb-mr__input,
.cdfb-mr__textarea,
.cdfb-mr__select {
	width: 100%;
	max-width: 100%;
	min-height: 48px;
	margin-bottom: 0.85rem;
	padding: 0.7rem 0.85rem;
	border: 1px solid var(--cdfb-border);
	border-radius: 12px;
	font: inherit;
	color: inherit;
	background: #fff;
}

.cdfb-mr__textarea {
	min-height: 88px;
	resize: vertical;
}

.cdfb-mr__input:focus,
.cdfb-mr__textarea:focus,
.cdfb-mr__select:focus,
.cdfb-mr__btn:focus-visible,
.cdfb-mr__filter:focus-visible,
.cdfb-mr__callout-btn:focus-visible {
	outline: 3px solid rgba(106, 63, 181, 0.45);
	outline-offset: 2px;
}

.cdfb-mr__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	width: 100%;
	min-height: 48px;
	padding: 0.75rem 1rem;
	border: 0;
	border-radius: 12px;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
}

.cdfb-mr__btn:disabled {
	opacity: 0.65;
	cursor: not-allowed;
}

.cdfb-mr__btn--primary {
	background: var(--cdfb-night);
	color: #fff;
}

.cdfb-mr__btn--ok {
	background: var(--cdfb-ok);
	color: #fff;
}

.cdfb-mr__btn--ko {
	background: var(--cdfb-ko);
	color: #fff;
}

.cdfb-mr__btn--partial {
	background: #c2410c;
	color: #fff;
}

.cdfb-mr__btn--ghost {
	background: transparent;
	color: var(--cdfb-violet);
	border: 1px solid var(--cdfb-border);
	font-weight: 600;
}

.cdfb-mr__btn--secondary {
	background: #eef2ff;
	color: var(--cdfb-night);
}

.cdfb-mr__dash {
	margin: 0 0 1.1rem;
	padding: 1rem 0.9rem 0.95rem;
	border: 1px solid var(--cdfb-border);
	border-radius: 18px;
	background: linear-gradient(180deg, #fbfafd 0%, #ffffff 100%);
	box-shadow: 0 12px 32px rgba(11, 31, 77, 0.07);
}

.cdfb-mr__dash-heading {
	margin: 0 0 0.85rem;
	font-size: 1.12rem;
	line-height: 1.3;
	color: var(--cdfb-night);
}

.cdfb-mr__contrib {
	margin: 0 0 1rem;
	padding: 1rem 1.15rem;
	border: 1px solid var(--cdfb-border);
	border-radius: 18px;
	background: linear-gradient(180deg, #f4fbf6 0%, #ffffff 100%);
	box-shadow: 0 12px 32px rgba(11, 31, 77, 0.07);
}

.cdfb-mr__contrib-heading {
	margin: 0 0 0.45rem;
	font-size: 1.12rem;
	line-height: 1.3;
	color: var(--cdfb-night);
}

.cdfb-mr__contrib-lead {
	margin: 0 0 0.4rem;
	font-size: 1.05rem;
	font-weight: 650;
	color: var(--cdfb-ok);
}

.cdfb-mr__contrib-meta {
	margin: 0 0 0.4rem;
	font-size: 0.92rem;
	color: var(--cdfb-night);
}

.cdfb-mr__contrib-hint {
	margin: 0.7rem 0 0;
	font-size: 0.88rem;
	color: var(--cdfb-muted);
}

.cdfb-mr__tiles {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.65rem;
}

.cdfb-mr__tile {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.2rem;
	min-width: 0;
	min-height: 6.1rem;
	width: 100%;
	padding: 0.85rem 0.75rem 0.8rem;
	border-radius: 14px;
	border: 1px solid var(--cdfb-border);
	background: #fff;
	font: inherit;
	color: inherit;
	text-align: left;
	cursor: pointer;
}

.cdfb-mr__tile-icon {
	font-size: 1.25rem;
	line-height: 1;
}

.cdfb-mr__tile-label {
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--cdfb-muted);
	line-height: 1.25;
}

.cdfb-mr__tile-count {
	margin-top: auto;
	font-size: 1.7rem;
	font-weight: 800;
	line-height: 1.05;
	color: var(--cdfb-night);
}

.cdfb-mr__tile:focus-visible {
	outline: 3px solid rgba(106, 63, 181, 0.45);
	outline-offset: 2px;
}

.cdfb-mr__tile.is-active {
	box-shadow: inset 0 0 0 2px var(--cdfb-night);
}

.cdfb-mr__tile--received {
	background: #f1f5f9;
	border-color: #cbd5e1;
}

.cdfb-mr__tile--in_progress {
	background: #dbeafe;
	border-color: #93c5fd;
}

.cdfb-mr__tile--to_retest {
	background: #ede9fe;
	border-color: #c4b5fd;
}

.cdfb-mr__tile--fixed {
	background: #dcfce7;
	border-color: #86efac;
}

.cdfb-mr__tile--closed {
	background: #e2e8f0;
	border-color: #94a3b8;
}

.cdfb-mr__tile--still_present {
	background: #fee2e2;
	border-color: #fca5a5;
}

.cdfb-mr__tile--partial {
	background: #ffedd5;
	border-color: #fdba74;
}

.cdfb-mr__callout {
	margin: 0.85rem 0 0;
}

.cdfb-mr__callout-quiet {
	margin: 0;
	font-size: 0.88rem;
	color: var(--cdfb-muted);
}

.cdfb-mr__callout-alert {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	padding: 0.85rem 0.9rem;
	border-radius: 12px;
	background: #ede9fe;
	border: 1px solid #c4b5fd;
}

.cdfb-mr__callout-alert p {
	margin: 0;
	font-weight: 800;
	color: #5b21b6;
}

.cdfb-mr__callout-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.7rem 1rem;
	border: 0;
	border-radius: 12px;
	background: var(--cdfb-violet);
	color: #fff;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	width: 100%;
}

.cdfb-mr__anchor {
	height: 0;
	overflow: hidden;
}

.cdfb-mr__filters {
	margin: 0 0 1rem;
}

.cdfb-mr__filter-label {
	font-size: 0.88rem;
	font-weight: 700;
	margin-bottom: 0.4rem;
}

.cdfb-mr__filter-btns {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.cdfb-mr__filter {
	min-height: 44px;
	padding: 0.45rem 0.8rem;
	border-radius: 999px;
	border: 1px solid var(--cdfb-border);
	background: #fff;
	color: var(--cdfb-night);
	font: inherit;
	font-weight: 600;
	cursor: pointer;
}

.cdfb-mr__filter.is-active {
	background: var(--cdfb-night);
	color: #fff;
	border-color: var(--cdfb-night);
}

.cdfb-mr__closed-pref {
	margin: 0.55rem 0 0;
}

.cdfb-mr__switch {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.65rem;
	width: 100%;
	min-height: 44px;
	padding: 0.3rem 0.7rem;
	border: 1px solid var(--cdfb-border);
	border-radius: 999px;
	background: #fff;
	color: inherit;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	text-align: left;
}

.cdfb-mr__switch:focus-visible {
	outline: 3px solid #2563eb;
	outline-offset: 2px;
}

.cdfb-mr__switch.is-on,
.cdfb-mr__switch[aria-checked="true"] {
	background: #ecfdf5;
	border-color: #166534;
}

.cdfb-mr__switch-text {
	min-width: 0;
	font-size: 0.92rem;
	line-height: 1.25;
}

.cdfb-mr__switch-full {
	display: none;
}

.cdfb-mr__switch-short {
	display: inline;
}

.cdfb-mr__switch-track {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 3.1rem;
	min-height: 32px;
	padding: 0.15rem 0.55rem;
	border-radius: 999px;
	background: #e2e8f0;
	color: #334155;
	font-size: 0.78rem;
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.04em;
}

.cdfb-mr__switch.is-on .cdfb-mr__switch-track,
.cdfb-mr__switch[aria-checked="true"] .cdfb-mr__switch-track {
	background: #166534;
	color: #fff;
}

.cdfb-mr__list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.cdfb-mr__list-tools {
	margin: 0 0 0.5rem;
}

.cdfb-mr__card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	border: 1px solid var(--cdfb-border, #dbe3ee);
	border-radius: 12px;
	background: #fff;
	overflow: hidden;
}

.cdfb-mr__card--unread {
	background: #f0fdf4;
	box-shadow: inset 4px 0 0 #166534;
	border-color: #86efac;
}

.cdfb-mr__ticket-toggle {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.45rem;
	width: 100%;
	min-height: 44px;
	margin: 0;
	padding: 0.75rem 0.85rem;
	border: 0;
	background: transparent;
	color: inherit;
	text-align: left;
	cursor: pointer;
	font: inherit;
}

.cdfb-mr__ticket-toggle:focus-visible {
	outline: 3px solid #2563eb;
	outline-offset: -3px;
}

.cdfb-mr__ticket-top {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.35rem 0.75rem;
}

.cdfb-mr__ticket-module {
	font-weight: 700;
	min-width: 0;
}

.cdfb-mr__ticket-date {
	color: var(--cdfb-muted);
	font-size: 0.88rem;
	white-space: nowrap;
}

.cdfb-mr__ticket-summary {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	overflow: hidden;
	margin: 0;
	line-height: 1.35;
	color: var(--cdfb-gray, #334155);
}

.cdfb-mr__ticket-more {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	min-height: 44px;
	margin-top: 0.15rem;
	font-size: 0.9rem;
	font-weight: 700;
	color: #1d4ed8;
}

.cdfb-mr__ticket-chevron {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.5rem;
	transition: transform 0.15s ease;
}

.cdfb-mr__card.is-open .cdfb-mr__ticket-chevron {
	transform: rotate(180deg);
}

.cdfb-mr__ticket-body {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	padding: 0 0.85rem 0.9rem;
	border-top: 1px solid var(--cdfb-border, #e2e8f0);
}

.cdfb-mr__badge--unread {
	background: #dcfce7;
	color: #166534;
	font-weight: 700;
}

.cdfb-mr__badge--impact {
	background: #ffedd5;
	color: #9a3412;
}

.cdfb-mr__tile--unread {
	border-color: #166534;
}

.cdfb-mr__facts {
	display: grid;
	grid-template-columns: minmax(5.5rem, 32%) minmax(0, 1fr);
	gap: 0.35rem 0.75rem;
	margin: 0;
}

.cdfb-mr__facts dt {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--cdfb-muted);
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.cdfb-mr__facts dd {
	margin: 0;
	font-weight: 600;
	min-width: 0;
}

.cdfb-mr__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.cdfb-mr__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	padding: 0.28rem 0.7rem;
	border-radius: 999px;
	font-size: 0.86rem;
	font-weight: 700;
	background: #e2e8f0;
	color: var(--cdfb-gray);
}

.cdfb-mr__badge--received,
.cdfb-mr__badge--other {
	background: #e2e8f0;
	color: var(--cdfb-gray);
}

.cdfb-mr__badge--in_progress {
	background: #dbeafe;
	color: var(--cdfb-blue);
}

.cdfb-mr__badge--to_retest {
	background: #ede9fe;
	color: #5b21b6;
}

.cdfb-mr__badge--fixed {
	background: #dcfce7;
	color: var(--cdfb-ok);
}

.cdfb-mr__badge--closed {
	background: #cbd5e1;
	color: #1e293b;
}

.cdfb-mr__badge--returned {
	background: #e0e7ff;
	color: #3730a3;
}

.cdfb-mr__badge--still {
	background: #fee2e2;
	color: var(--cdfb-ko);
}

.cdfb-mr__badge--partial {
	background: #ffedd5;
	color: var(--cdfb-orange);
}

.cdfb-mr__badge--contrib {
	background: #dcfce7;
	color: var(--cdfb-ok);
}

.cdfb-mr__desc-label,
.cdfb-mr__field-label {
	margin: 0;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--cdfb-muted);
}

.cdfb-mr__desc {
	margin: 0;
	white-space: pre-wrap;
	overflow-wrap: anywhere;
}

.cdfb-mr__meta-quiet {
	margin: 0;
	font-size: 0.9rem;
	color: var(--cdfb-muted);
}

.cdfb-mr__link {
	color: var(--cdfb-violet);
	font-weight: 600;
	word-break: break-all;
}

.cdfb-mr__timeline {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.cdfb-mr__timeline li {
	padding: 0.55rem 0.7rem;
	border-radius: 10px;
	background: var(--cdfb-bg);
	border-left: 3px solid var(--cdfb-violet);
}

.cdfb-mr__timeline-when {
	display: block;
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--cdfb-muted);
}

.cdfb-mr__timeline-type {
	font-weight: 700;
}

.cdfb-mr__acc {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	min-height: 48px;
	margin: 0;
	padding: 0.65rem 0.85rem;
	border: 1px solid var(--cdfb-border);
	border-radius: 12px;
	background: #fff;
	color: var(--cdfb-night);
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	text-align: left;
}

.cdfb-mr__acc--warn {
	color: var(--cdfb-ko);
	border-color: #fca5a5;
}

.cdfb-mr__acc[aria-expanded='true'] {
	background: #eef2ff;
}

.cdfb-mr__acc:focus-visible {
	outline: 3px solid rgba(106, 63, 181, 0.45);
	outline-offset: 2px;
}

.cdfb-mr__actions {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	margin-top: 0.2rem;
	padding-top: 0.65rem;
	border-top: 1px solid var(--cdfb-border);
}

.cdfb-mr__retest {
	margin-top: 0.85rem;
	padding: 0.9rem 0.95rem;
	border-radius: 14px;
	border: 1px solid rgba(106, 63, 181, 0.28);
	background: linear-gradient(180deg, #f7f2fc 0%, #fff 80%);
}

.cdfb-mr__retest-q,
.cdfb-mr__update-q {
	margin: 0 0 0.65rem;
	font-weight: 700;
	color: var(--cdfb-night, #0b1f4d);
}

.cdfb-mr__retest-actions,
.cdfb-mr__update-actions {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.cdfb-mr__banner-inline {
	margin: 0;
	padding: 0.65rem 0.75rem;
	border-radius: 10px;
	font-weight: 600;
	font-size: 0.92rem;
}

.cdfb-mr__banner-inline--ok {
	background: #dcfce7;
	color: var(--cdfb-ok);
}

.cdfb-mr__banner-inline--info {
	background: #dbeafe;
	color: var(--cdfb-blue);
}

.cdfb-mr__confirm {
	margin: 0;
	padding: 0.75rem 0.85rem;
	border-radius: 12px;
	background: #dcfce7;
	color: var(--cdfb-ok);
	font-weight: 700;
}

.cdfb-mr__empty {
	color: var(--cdfb-muted);
}

.cdfb-mr__notice {
	margin: 0 0 1rem;
	color: var(--cdfb-muted);
}

.cdfb-mr[hidden],
.cdfb-mr [hidden] {
	display: none !important;
}

@media (min-width: 431px) {
	.cdfb-mr__switch-full {
		display: inline;
	}

	.cdfb-mr__switch-short {
		display: none;
	}
}

@media (max-width: 430px) {
	.cdfb-mr__switch {
		padding: 0.25rem 0.55rem;
		gap: 0.45rem;
	}

	.cdfb-mr__switch-text {
		font-size: 0.86rem;
	}
}

@media (max-width: 359px) {
	.cdfb-mr__tiles {
		grid-template-columns: minmax(0, 1fr);
	}

	.cdfb-mr__facts {
		grid-template-columns: minmax(0, 1fr);
	}

	.cdfb-mr__facts dt {
		margin-top: 0.25rem;
	}
}

@media (min-width: 720px) {
	.cdfb-mr__tiles {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.cdfb-mr__btn--ghost,
	.cdfb-mr__toolbar-row .cdfb-mr__btn,
	.cdfb-mr__callout-btn {
		width: auto;
		align-self: flex-start;
	}

	.cdfb-mr__retest-actions {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0.55rem;
	}

	.cdfb-mr__switch {
		width: auto;
		max-width: 100%;
	}
}

.cdfb-mr__thread {
	list-style: none;
	margin: 0 0 0.75rem;
	padding: 0;
	display: grid;
	gap: 0.65rem;
}

.cdfb-mr__thread-msg {
	padding: 0.75rem 0.9rem;
	border-radius: 12px;
	border: 1px solid var(--cdfb-border);
	background: #fff;
}

.cdfb-mr__thread-msg--admin {
	background: #eef2ff;
	border-color: rgba(106, 63, 181, 0.22);
}

.cdfb-mr__thread-msg--tester {
	background: #f8fafc;
}

.cdfb-mr__thread-who {
	margin: 0;
	font-weight: 700;
}

.cdfb-mr__thread-when {
	margin: 0.15rem 0 0.4rem;
	font-size: 0.82rem;
	color: var(--cdfb-muted);
}

.cdfb-mr__thread-body {
	white-space: pre-wrap;
	overflow-wrap: anywhere;
}

.cdfb-mr__thread-reply {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	margin: 0.35rem 0 0.75rem;
	padding-top: 0.65rem;
	border-top: 1px solid var(--cdfb-border);
}

.cdfb-mr__thread-reply .cdfb-mr__btn {
	min-height: 44px;
	align-self: stretch;
}

.cdfb-mr__changelog {
	margin: 1.75rem 0 0;
	padding: 1rem 0 0;
	border-top: 1px solid var(--cdfb-border);
}

.cdfb-mr__changelog-heading {
	margin: 0 0 0.35rem;
	font-size: 1.08rem;
	line-height: 1.3;
	color: var(--cdfb-night);
}

.cdfb-mr__changelog-lead {
	margin: 0 0 0.85rem;
	font-size: 0.9rem;
	color: var(--cdfb-muted);
}

.cdfb-mr__changelog-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin: 0 0 0.85rem;
}

.cdfb-mr__changelog-empty {
	margin: 0;
	padding: 0.9rem 1rem;
	border-radius: 14px;
	background: #f8fafc;
	border: 1px dashed var(--cdfb-border);
	color: var(--cdfb-muted);
}

.cdfb-mr__cl {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.cdfb-mr__cl-head {
	display: none;
}

.cdfb-mr__cl-row {
	display: flex;
	flex-direction: column;
	gap: 0.28rem;
	padding: 0.85rem 0.95rem;
	border-radius: 14px;
	border: 1px solid var(--cdfb-border);
	background: #fff;
}

.cdfb-mr__cl-date {
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--cdfb-muted);
}

.cdfb-mr__cl-module {
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--cdfb-violet);
}

.cdfb-mr__cl-type,
.cdfb-mr__cl-state {
	font-weight: 700;
	font-size: 0.92rem;
}

.cdfb-mr__cl-copy {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.cdfb-mr__cl-summary {
	margin: 0.15rem 0 0;
	line-height: 1.45;
}

.cdfb-mr__cl-forum {
	font-size: 0.88rem;
	font-weight: 650;
	color: var(--cdfb-violet);
	text-decoration: none;
}

.cdfb-mr__cl-forum:hover,
.cdfb-mr__cl-forum:focus {
	text-decoration: underline;
}

.cdfb-mr__changelog--requests {
	border-top: 1px solid var(--cdfb-border);
}

.cdfb-mr__changelog-more {
	margin-top: 0.35rem;
	width: 100%;
}

@media (min-width: 720px) {
	.cdfb-mr__cl {
		gap: 0;
		border: 1px solid var(--cdfb-border);
		border-radius: 14px;
		overflow: hidden;
		background: #fff;
	}

	.cdfb-mr__cl-head,
	.cdfb-mr__cl-row {
		display: grid;
		grid-template-columns: 8.5rem minmax(7rem, 0.85fr) 8.5rem minmax(0, 1.5fr);
		gap: 0.6rem 0.85rem;
		align-items: start;
		padding: 0.7rem 0.95rem;
	}

	.cdfb-mr__cl-head {
		background: #f8f6fc;
		font-size: 0.75rem;
		font-weight: 800;
		text-transform: uppercase;
		letter-spacing: 0.04em;
		color: var(--cdfb-muted);
		border-bottom: 1px solid var(--cdfb-border);
	}

	.cdfb-mr__cl-row {
		border: 0;
		border-radius: 0;
		border-top: 1px solid var(--cdfb-border);
		background: transparent;
	}

	.cdfb-mr__cl-row:first-of-type {
		border-top: 0;
	}

	.cdfb-mr__cl-module {
		text-transform: none;
		letter-spacing: 0;
		font-size: 0.92rem;
		font-weight: 650;
		color: var(--cdfb-night);
	}

	.cdfb-mr__cl-summary {
		margin: 0;
	}

	.cdfb-mr__changelog-more {
		width: auto;
		align-self: flex-start;
	}
}

.cdfb-mr--preview .cdfb-mr__preview-disabled {
	opacity: 0.72;
	pointer-events: none;
}

.cdfb-mr--preview .cdfb-mr__retest {
	display: block;
}

.cdfb-mr__admin-tool {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	margin: 0.85rem 0 0;
	padding: 0.55rem 0.7rem;
	border: 1px dashed #94a3b8;
	border-radius: 8px;
	background: #f8fafc;
}

.cdfb-mr__admin-tool-id {
	font-weight: 700;
	font-variant-numeric: tabular-nums;
}

.cdfb-mr__admin-tool-btn {
	min-height: 40px;
}

body.cdfb-admin-preview #wpadminbar {
	display: none !important;
}

body.cdfb-admin-preview.admin-bar {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

body.cdfb-preview-embed #wpadminbar {
	display: none !important;
}
