.yks-tr-wrap {
	--tr-border: #d8e2ef;
	--tr-border-strong: #b8c9de;
	--tr-bg: #fff;
	--tr-bg-soft: #f6f9fc;
	--tr-text: #1f2937;
	--tr-muted: #64748b;
	--tr-primary: #446084;
	--tr-primary-hover: #334862;
	--tr-accent: #c62d27;
	--tr-accent-hover: #a9231e;
	--tr-navy: #122c54;
	--tr-navy-2: #0c2043;
	--tr-radius: 10px;
	box-sizing: border-box;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0;
	font-family: inherit;
	color: var(--tr-text);
	line-height: 1.5;
}

.yks-tr-wrap *,
.yks-tr-wrap *::before,
.yks-tr-wrap *::after {
	box-sizing: border-box;
}

/* —— Hero —— */
.yks-tr-page-header {
	text-align: center;
	margin: 0 0 1.35rem;
	padding: 0.15rem 0 0.35rem;
	background: linear-gradient(180deg, rgba(246, 249, 252, 0.65) 0%, rgba(255, 255, 255, 0) 100%);
	border-radius: var(--tr-radius);
}

.yks-tr-page-title {
	margin: 0 0 0.35rem;
	font-size: clamp(1.4rem, 3vw, 1.8rem);
	font-weight: 700;
	line-height: 1.25;
	color: var(--tr-navy);
}

.yks-tr-page-subtitle {
	margin: 0 0 0.65rem;
	font-size: clamp(1rem, 2.2vw, 1.15rem);
	font-weight: 600;
	color: var(--tr-muted);
}

.yks-tr-page-lead {
	margin: 0 auto;
	max-width: 40rem;
	font-size: 0.98rem;
	line-height: 1.55;
	color: var(--tr-muted);
}

/* —— Blocks (jet-tool sections) —— */
.yks-tr-block {
	background: var(--tr-bg);
	border: 1px solid var(--tr-border-strong);
	border-radius: var(--tr-radius);
	margin-bottom: 1rem;
	overflow: hidden;
}

.yks-tr-block-head {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	flex-wrap: wrap;
	padding: 0.68rem 1rem;
	background: linear-gradient(135deg, var(--tr-navy), var(--tr-navy-2));
	border-bottom: 0;
	font-size: 1.02rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #fff;
	text-align: center;
}

.yks-tr-optional {
	font-weight: 600;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.82rem;
	letter-spacing: 0;
}

.yks-tr-block-body {
	padding: 1.05rem 1.15rem 1.15rem;
	background: var(--tr-bg);
}

/* —— Score type chips —— */
.yks-tr-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.yks-tr-chip {
	position: relative;
	cursor: pointer;
	margin: 0;
}

.yks-tr-chip input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.yks-tr-chip span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 4.4rem;
	min-height: 42px;
	padding: 0.48rem 1rem;
	border: 1px solid var(--tr-border-strong);
	border-radius: 8px;
	background: var(--tr-bg-soft);
	color: var(--tr-navy);
	font-weight: 700;
	font-size: 0.92rem;
	letter-spacing: 0.02em;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.12s ease;
}

.yks-tr-chip:hover span {
	border-color: var(--tr-primary);
	background: #fff;
	transform: translateY(-1px);
}

.yks-tr-chip input:checked + span {
	background: var(--tr-navy);
	border-color: var(--tr-navy);
	color: #fff;
	transform: none;
}

.yks-tr-chip input:focus-visible + span {
	outline: 3px solid rgba(198, 45, 39, 0.28);
	outline-offset: 2px;
}

/* —— Fields —— */
.yks-tr-fields {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.9rem 1rem;
}

.yks-tr-fields--filters {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.yks-tr-field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin: 0;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: var(--tr-navy);
}

.yks-tr-field input,
.yks-tr-field select {
	width: 100%;
	min-height: 44px;
	border: 1px solid var(--tr-border-strong);
	border-radius: 8px;
	background: #fff;
	color: var(--tr-text);
	padding: 0.55rem 0.75rem;
	font: inherit;
	font-weight: 500;
	font-size: 0.95rem;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.yks-tr-field input::placeholder {
	color: #94a3b8;
	opacity: 1;
}

.yks-tr-field input:focus,
.yks-tr-field select:focus {
	outline: none;
	border-color: var(--tr-primary);
	box-shadow: 0 0 0 3px rgba(68, 96, 132, 0.14);
}

.yks-tr-hint {
	margin: 0.95rem 0 0;
	padding: 0.65rem 0.8rem;
	border-left: 3px solid var(--tr-primary);
	border-radius: 0 6px 6px 0;
	background: var(--tr-bg-soft);
	font-size: 0.86rem;
	font-weight: 500;
	color: var(--tr-muted);
	line-height: 1.55;
}

/* —— Actions —— */
.yks-tr-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin: 1.1rem 0 1.35rem;
	padding: 0.15rem 0;
}

.yks-tr-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0.65rem 1.25rem;
	border: 1px solid transparent;
	border-radius: 9px;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease, opacity 0.15s ease;
}

.yks-tr-btn:hover {
	transform: translateY(-1px);
}

.yks-tr-btn-primary {
	background: var(--tr-navy);
	border-color: var(--tr-navy);
	color: #fff;
}

.yks-tr-btn-primary:hover {
	background: var(--tr-navy-2);
	border-color: var(--tr-navy-2);
}

.yks-tr-btn-secondary {
	background: #fff;
	border-color: var(--tr-border-strong);
	color: var(--tr-navy);
}

.yks-tr-btn-secondary:hover {
	border-color: var(--tr-primary);
	background: var(--tr-bg-soft);
}

.yks-tr-btn:disabled {
	opacity: 0.55;
	cursor: wait;
	transform: none;
}

/* —— Status —— */
.yks-tr-status {
	margin: 0 0 1rem;
	padding: 0.85rem 1rem;
	border-radius: 9px;
	border: 1px solid transparent;
	background: #fff7ed;
	color: #9a3412;
	font-size: 0.92rem;
	font-weight: 600;
}

.yks-tr-status.is-error {
	background: #fff5f5;
	border-color: #fecaca;
	color: #8c1e1a;
}

.yks-tr-status.is-info {
	background: #eef3fa;
	border-color: #d8e2ef;
	color: var(--tr-navy);
}

.yks-tr-status.is-loading {
	background: var(--tr-bg-soft);
	border-color: var(--tr-border);
	color: var(--tr-muted);
}

/* —— Results —— */
.yks-tr-results {
	margin-top: 0.35rem;
	padding: 1.05rem 1.1rem 1.15rem;
	border: 1px solid var(--tr-border-strong);
	border-radius: var(--tr-radius);
	background: linear-gradient(180deg, #f8fbff 0%, #fff 48%);
}

.yks-tr-results-head {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	justify-content: space-between;
	gap: 0.45rem 1rem;
	margin-bottom: 0.85rem;
	padding-bottom: 0.7rem;
	border-bottom: 1px solid var(--tr-border);
}

.yks-tr-results-title {
	margin: 0;
	font-size: 1.12rem;
	font-weight: 800;
	color: var(--tr-navy);
	letter-spacing: 0.01em;
}

.yks-tr-results-meta {
	margin: 0;
	color: var(--tr-muted);
	font-size: 0.86rem;
	font-weight: 600;
}

.yks-tr-table-wrap,
.yks-tr-list-table-wrap {
	width: 100%;
	max-width: 100%;
	overflow-x: visible;
	border: 1px solid var(--tr-border);
	border-radius: 10px;
	background: #fff;
}

.yks-tr-table {
	width: 100%;
	max-width: 100%;
	table-layout: fixed;
	border-collapse: separate;
	border-spacing: 0;
	font-size: 0.86rem;
}

.yks-tr-table th {
	background: linear-gradient(135deg, var(--tr-navy), var(--tr-navy-2));
	color: #fff;
	text-align: left;
	padding: 0.65rem 0.55rem;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	line-height: 1.25;
	hyphens: auto;
}

.yks-tr-table th:first-child {
	border-radius: 9px 0 0;
}

.yks-tr-table th:last-child {
	border-radius: 0 9px 0 0;
}

.yks-tr-table td {
	padding: 0.6rem 0.55rem;
	border-bottom: 1px solid var(--tr-border);
	vertical-align: top;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.yks-tr-table tbody tr {
	transition: background 0.12s ease;
}

.yks-tr-table tbody tr:nth-child(even) {
	background: var(--tr-bg-soft);
}

.yks-tr-table tbody tr:hover {
	background: #eef3fa;
}

.yks-tr-table tbody tr:last-child td {
	border-bottom: 0;
}

.yks-tr-uni,
.yks-tr-dept {
	display: block;
	font-weight: 750;
	color: var(--tr-navy);
	text-decoration: none;
}

.yks-tr-uni:hover,
.yks-tr-dept:hover {
	color: var(--tr-accent);
	text-decoration: underline;
}

.yks-tr-uni--kktc-campus {
	color: #9a3412;
	font-weight: 800;
	line-height: 1.35;
}

.yks-tr-uni--kktc-campus:hover {
	color: #7c2d12;
}

.yks-tr-city,
.yks-tr-variant {
	display: block;
	margin-top: 0.18rem;
	color: var(--tr-muted);
	font-size: 0.78rem;
	font-weight: 600;
}

.yks-tr-city--kktc {
	color: #9a3412;
	font-weight: 800;
}

.yks-tr-flags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.28rem;
	margin-top: 0.4rem;
}

.yks-tr-flag {
	display: inline-flex;
	align-items: center;
	min-height: 22px;
	padding: 0.12rem 0.48rem;
	border-radius: 5px;
	border: 1px solid transparent;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	line-height: 1.2;
}

.yks-tr-flag--burslu {
	background: #e8f5ee;
	border-color: #9dceb0;
	color: #166534;
}

.yks-tr-flag--indirimli {
	background: #eef4fa;
	border-color: #b8c9de;
	color: #1e3a5f;
}

.yks-tr-flag--ucretli {
	background: #f3f4f6;
	border-color: #d1d5db;
	color: #374151;
}

.yks-tr-flag--kktc {
	background: #fff7ed;
	border-color: #f0b56b;
	color: #9a3412;
}

.yks-tr-flag--uyruklu {
	background: #fffbeb;
	border-color: #f5d78e;
	color: #854d0e;
}

.yks-tr-flag--lang,
.yks-tr-flag--iio {
	background: #f8fafc;
	border-color: #cbd5e1;
	color: #475569;
	text-transform: none;
	letter-spacing: 0.01em;
	font-weight: 700;
}

.yks-tr-campus-note {
	display: block;
	margin-top: 0.35rem;
	padding: 0.28rem 0.45rem;
	border-left: 3px solid #d97706;
	border-radius: 0 4px 4px 0;
	background: #fffbeb;
	color: #92400e;
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1.35;
}

.yks-tr-table tbody tr.yks-tr-row--flagged {
	box-shadow: inset 3px 0 0 #d97706;
}

.yks-tr-num {
	font-variant-numeric: tabular-nums;
	font-weight: 700;
	color: var(--tr-navy);
}

.yks-tr-badge {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 0.18rem 0.55rem;
	border-radius: 6px;
	border: 1px solid #d8e2ef;
	background: #eef3fa;
	color: var(--tr-navy);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.yks-tr-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.4rem;
	margin: 1rem 0 0;
}

.yks-tr-page-btn {
	min-width: 38px;
	height: 38px;
	padding: 0 0.55rem;
	border: 1px solid var(--tr-border-strong);
	border-radius: 8px;
	background: #fff;
	color: var(--tr-navy);
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.yks-tr-page-btn.is-current,
.yks-tr-page-btn:hover {
	background: var(--tr-navy);
	border-color: var(--tr-navy);
	color: #fff;
}

/* —— Soft related links / footnote —— */
.yks-tr-footnote {
	margin: 1.1rem 0 0;
	font-size: 0.8rem;
	color: var(--tr-muted);
	line-height: 1.5;
}

.yks-tr-soft-link {
	margin: 0.85rem 0 0;
	font-size: 0.92rem;
	line-height: 1.55;
	color: var(--tr-muted);
}

.yks-tr-soft-link a {
	color: var(--tr-primary);
	font-weight: 650;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.yks-tr-soft-link a:hover {
	color: var(--tr-accent);
}

.yks-tr-empty {
	margin: 0;
	padding: 1.25rem 1rem;
	text-align: center;
	color: var(--tr-muted);
	font-weight: 600;
}

/* —— Tercih takvimi —— */
.yks-tr-calendar {
	margin: 0 0 1.15rem;
	border: 1px solid var(--tr-border-strong);
	border-radius: var(--tr-radius);
	background: linear-gradient(180deg, #f8fafc 0%, #fff 55%);
	overflow: hidden;
}

.yks-tr-calendar-summary {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.35rem 0.85rem;
	padding: 0.85rem 1.05rem;
	cursor: pointer;
	list-style: none;
	font-weight: 800;
	color: var(--tr-navy);
	user-select: none;
}

.yks-tr-calendar-summary::-webkit-details-marker {
	display: none;
}

.yks-tr-calendar-summary::after {
	content: "";
	width: 0.45rem;
	height: 0.45rem;
	margin-left: auto;
	border-right: 2px solid var(--tr-navy);
	border-bottom: 2px solid var(--tr-navy);
	transform: rotate(45deg);
	transition: transform 0.15s ease;
	flex-shrink: 0;
}

.yks-tr-calendar[open] > .yks-tr-calendar-summary::after {
	transform: rotate(-135deg);
	margin-top: 0.25rem;
}

.yks-tr-calendar-summary-title {
	font-size: 1.05rem;
}

.yks-tr-calendar-summary-hint {
	font-size: 0.78rem;
	font-weight: 650;
	color: var(--tr-muted);
}

.yks-tr-calendar-body {
	padding: 0 1.05rem 1.05rem;
	border-top: 1px solid var(--tr-border);
}

.yks-tr-calendar-lead {
	margin: 0.85rem 0 0.9rem;
	font-size: 0.9rem;
	line-height: 1.5;
	color: var(--tr-muted);
}

.yks-tr-timeline {
	margin: 0;
	padding: 0 0 0 0.35rem;
	list-style: none;
	border-left: 2px solid var(--tr-border-strong);
}

.yks-tr-timeline-item {
	position: relative;
	padding: 0 0 0.95rem 1.15rem;
}

.yks-tr-timeline-item:last-child {
	padding-bottom: 0.15rem;
}

.yks-tr-timeline-dot {
	position: absolute;
	left: -0.42rem;
	top: 0.28rem;
	width: 0.7rem;
	height: 0.7rem;
	border-radius: 50%;
	border: 2px solid var(--tr-border-strong);
	background: #fff;
	box-sizing: border-box;
}

.yks-tr-timeline-item.is-done .yks-tr-timeline-dot {
	border-color: #166534;
	background: #86efac;
}

.yks-tr-timeline-item.is-active .yks-tr-timeline-dot {
	border-color: var(--tr-accent);
	background: #fecaca;
	box-shadow: 0 0 0 3px rgba(198, 45, 39, 0.15);
}

.yks-tr-timeline-item.is-pending .yks-tr-timeline-dot {
	border-color: #94a3b8;
	background: #e2e8f0;
}

.yks-tr-timeline-content {
	display: flex;
	flex-direction: column;
	gap: 0.12rem;
}

.yks-tr-timeline-title {
	font-size: 0.92rem;
	font-weight: 800;
	color: var(--tr-navy);
}

.yks-tr-timeline-date {
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--tr-text);
	font-variant-numeric: tabular-nums;
}

.yks-tr-timeline-item.is-pending .yks-tr-timeline-date {
	color: var(--tr-muted);
	font-style: italic;
	font-weight: 650;
}

.yks-tr-timeline-note {
	font-size: 0.78rem;
	color: var(--tr-muted);
	line-height: 1.4;
}

.yks-tr-calendar-source {
	margin: 0.95rem 0 0;
	font-size: 0.76rem;
	line-height: 1.45;
	color: var(--tr-muted);
}

.yks-tr-calendar-source a {
	color: var(--tr-primary);
	font-weight: 650;
}

.yks-tr-print-only {
	display: none !important;
}

.yks-tr-print-logo {
	display: block;
	max-width: 160px;
	height: auto;
	object-fit: contain;
}

.yks-tr-print-brand-row {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.yks-tr-print-footer {
	margin-top: 0.75rem;
	padding-top: 0.55rem;
	border-top: 1px solid #cbd5e1;
}

.yks-tr-print-footer-site,
.yks-tr-print-footer-note {
	margin: 0;
}

/* —— Preference list —— */
.yks-tr-list {
	margin: 0 0 1.15rem;
	padding: 1rem 1.05rem 1.05rem;
	border: 1px solid var(--tr-border-strong);
	border-radius: var(--tr-radius);
	background: linear-gradient(180deg, #f8fafc 0%, #fff 42%);
}

.yks-tr-list-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.65rem 1rem;
	margin-bottom: 0.7rem;
}

.yks-tr-list-title-wrap {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	flex-wrap: wrap;
}

.yks-tr-list-title {
	margin: 0;
	font-size: 1.12rem;
	font-weight: 800;
	color: var(--tr-navy);
}

.yks-tr-list-count {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 0.12rem 0.55rem;
	border-radius: 999px;
	border: 1px solid var(--tr-border-strong);
	background: #fff;
	color: var(--tr-navy);
	font-size: 0.78rem;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
}

.yks-tr-list-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.yks-tr-btn-sm {
	min-height: 36px;
	padding: 0.35rem 0.7rem;
	font-size: 0.82rem;
}

.yks-tr-btn:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.yks-tr-list-hint {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.5;
	color: var(--tr-muted);
}

.yks-tr-list-table-wrap {
	margin-top: 0.55rem;
}

.yks-tr-list-table th.yks-tr-list-col-no,
.yks-tr-list-table td.yks-tr-list-no {
	width: 2.6rem;
	text-align: center;
}

/* Desktop column weights — keep full table visible without sideways scroll */
.yks-tr-table:not(.yks-tr-list-table) th:nth-child(1),
.yks-tr-table:not(.yks-tr-list-table) td:nth-child(1) {
	width: 22%;
}

.yks-tr-table:not(.yks-tr-list-table) th:nth-child(2),
.yks-tr-table:not(.yks-tr-list-table) td:nth-child(2) {
	width: 24%;
}

.yks-tr-table:not(.yks-tr-list-table) th:nth-child(3),
.yks-tr-table:not(.yks-tr-list-table) td:nth-child(3) {
	width: 9%;
}

.yks-tr-table:not(.yks-tr-list-table) th:nth-child(4),
.yks-tr-table:not(.yks-tr-list-table) td:nth-child(4),
.yks-tr-table:not(.yks-tr-list-table) th:nth-child(5),
.yks-tr-table:not(.yks-tr-list-table) td:nth-child(5),
.yks-tr-table:not(.yks-tr-list-table) th:nth-child(6),
.yks-tr-table:not(.yks-tr-list-table) td:nth-child(6) {
	width: 9%;
}

.yks-tr-table:not(.yks-tr-list-table) th:nth-child(7),
.yks-tr-table:not(.yks-tr-list-table) td:nth-child(7) {
	width: 12%;
}

.yks-tr-list-table th:nth-child(2),
.yks-tr-list-table td:nth-child(2) {
	width: 16%;
}

.yks-tr-list-table th:nth-child(3),
.yks-tr-list-table td:nth-child(3) {
	width: 18%;
}

.yks-tr-list-table th:nth-child(4),
.yks-tr-list-table td:nth-child(4) {
	width: 8%;
}

.yks-tr-list-table th:nth-child(5),
.yks-tr-list-table td:nth-child(5) {
	width: 7%;
}

.yks-tr-list-table th:nth-child(6),
.yks-tr-list-table td:nth-child(6),
.yks-tr-list-table th:nth-child(7),
.yks-tr-list-table td:nth-child(7),
.yks-tr-list-table th:nth-child(8),
.yks-tr-list-table td:nth-child(8) {
	width: 7%;
}

.yks-tr-list-table th:nth-child(9),
.yks-tr-list-table td:nth-child(9) {
	width: 10%;
}

.yks-tr-list-table th:nth-child(10),
.yks-tr-list-table td:nth-child(10) {
	width: 12%;
}

.yks-tr-list-ops {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
}

.yks-tr-list-op {
	width: 32px;
	height: 32px;
	padding: 0;
	border: 1px solid var(--tr-border-strong);
	border-radius: 7px;
	background: #fff;
	color: var(--tr-navy);
	font: inherit;
	font-size: 0.85rem;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
	transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}

.yks-tr-list-op:hover:not(:disabled) {
	background: var(--tr-navy);
	border-color: var(--tr-navy);
	color: #fff;
}

.yks-tr-list-op:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.yks-tr-list-op--remove {
	color: var(--tr-accent);
	border-color: #e8b4b1;
}

.yks-tr-list-op--remove:hover:not(:disabled) {
	background: var(--tr-accent);
	border-color: var(--tr-accent);
	color: #fff;
}

.yks-tr-list-flash {
	margin: 0.65rem 0 0;
	padding: 0.55rem 0.7rem;
	border-radius: 8px;
	border: 1px solid var(--tr-border);
	background: var(--tr-bg-soft);
	color: var(--tr-navy);
	font-size: 0.86rem;
	font-weight: 650;
}

.yks-tr-list-flash.is-ok {
	border-color: #9dceb0;
	background: #e8f5ee;
	color: #166534;
}

.yks-tr-list-flash.is-error {
	border-color: #f0b4b0;
	background: #fef2f2;
	color: #991b1b;
}

.yks-tr-list-flash.is-info {
	border-color: #b8c9de;
	background: #eef3fa;
	color: #1e3a5f;
}

/* —— List risk analysis —— */
.yks-tr-list-col-risk {
	min-width: 0;
}

.yks-tr-risk-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.28rem;
	max-width: 12rem;
}

.yks-tr-risk {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 0.12rem 0.5rem;
	border-radius: 6px;
	border: 1px solid transparent;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	line-height: 1.2;
	white-space: normal;
	text-align: left;
}

.yks-tr-risk--guvenli {
	background: #e8f5ee;
	border-color: #9dceb0;
	color: #166534;
}

.yks-tr-risk--sinir {
	background: #fff7ed;
	border-color: #f0b56b;
	color: #9a3412;
}

.yks-tr-risk--riskli {
	background: #fef2f2;
	border-color: #f0b4b0;
	color: #991b1b;
}

.yks-tr-risk--yok {
	background: #f3f4f6;
	border-color: #d1d5db;
	color: #4b5563;
}

.yks-tr-risk-note {
	font-size: 0.68rem;
	font-weight: 600;
	line-height: 1.35;
	color: #9a3412;
}

.yks-tr-analysis {
	margin-top: 0.85rem;
	padding: 0.85rem 0.95rem 0.95rem;
	border: 1px solid var(--tr-border-strong);
	border-radius: 10px;
	background: #fff;
}

.yks-tr-analysis-head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.35rem 1rem;
	margin-bottom: 0.65rem;
}

.yks-tr-analysis-title {
	margin: 0;
	font-size: 1rem;
	font-weight: 800;
	color: var(--tr-navy);
}

.yks-tr-analysis-meta {
	margin: 0;
	font-size: 0.8rem;
	font-weight: 650;
	color: var(--tr-muted);
}

.yks-tr-analysis-counts {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-bottom: 0.55rem;
}

.yks-tr-analysis-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	min-height: 30px;
	padding: 0.2rem 0.65rem;
	border-radius: 8px;
	border: 1px solid var(--tr-border);
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--tr-navy);
	background: var(--tr-bg-soft);
}

.yks-tr-analysis-pill strong {
	font-variant-numeric: tabular-nums;
	font-weight: 800;
}

.yks-tr-analysis-pill--guvenli {
	background: #e8f5ee;
	border-color: #9dceb0;
	color: #166534;
}

.yks-tr-analysis-pill--sinir {
	background: #fff7ed;
	border-color: #f0b56b;
	color: #9a3412;
}

.yks-tr-analysis-pill--riskli {
	background: #fef2f2;
	border-color: #f0b4b0;
	color: #991b1b;
}

.yks-tr-analysis-pill--yok {
	background: #f3f4f6;
	border-color: #d1d5db;
	color: #4b5563;
}

.yks-tr-analysis-advice {
	margin: 0 0 0.45rem;
	font-size: 0.9rem;
	line-height: 1.5;
	font-weight: 650;
	color: var(--tr-text);
}

.yks-tr-analysis-disclaimer {
	margin: 0;
	font-size: 0.76rem;
	line-height: 1.45;
	color: var(--tr-muted);
}

.yks-tr-add-btn {
	min-height: 34px;
	padding: 0.28rem 0.55rem;
	border: 1px solid var(--tr-border-strong);
	border-radius: 8px;
	background: #fff;
	color: var(--tr-navy);
	font: inherit;
	font-size: 0.76rem;
	font-weight: 800;
	white-space: normal;
	line-height: 1.25;
	cursor: pointer;
	transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}

.yks-tr-add-btn:hover {
	background: var(--tr-navy);
	border-color: var(--tr-navy);
	color: #fff;
}

.yks-tr-add-btn.is-on {
	background: #e8f5ee;
	border-color: #9dceb0;
	color: #166534;
}

.yks-tr-add-btn.is-on:hover {
	background: #166534;
	border-color: #166534;
	color: #fff;
}

.yks-tr-col-add {
	white-space: normal;
}

@media print {
	@page {
		size: A4;
		margin: 10mm 12mm;
	}

	body * {
		visibility: hidden !important;
	}

	html.yks-tr-printing-list .yks-tr-list,
	html.yks-tr-printing-list .yks-tr-list * {
		visibility: visible !important;
	}

	html.yks-tr-printing-list .yks-tr-list {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		margin: 0;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: #fff;
		box-shadow: none;
	}

	html.yks-tr-printing-list .yks-tr-print-only {
		display: block !important;
		visibility: visible !important;
	}

	html.yks-tr-printing-list .yks-tr-print-banner {
		margin: 0 0 0.55rem;
		padding: 0 0 0.45rem;
		border-bottom: 2px solid #122c54;
	}

	html.yks-tr-printing-list .yks-tr-print-brand-row {
		display: flex !important;
		align-items: center;
		gap: 0.65rem;
		margin: 0 0 0.35rem;
	}

	html.yks-tr-printing-list .yks-tr-print-logo {
		display: block !important;
		max-width: 148px;
		max-height: 42px;
		width: auto;
		height: auto;
		object-fit: contain;
	}

	html.yks-tr-printing-list .yks-tr-print-brand {
		margin: 0;
		font-size: 0.78rem;
		font-weight: 800;
		letter-spacing: 0.04em;
		text-transform: uppercase;
		color: #122c54;
	}

	html.yks-tr-printing-list .yks-tr-print-title {
		margin: 0 0 0.15rem;
		font-size: 1.28rem;
		font-weight: 800;
		color: #122c54;
		line-height: 1.2;
	}

	html.yks-tr-printing-list .yks-tr-print-meta {
		margin: 0;
		font-size: 0.78rem;
		color: #64748b;
	}

	html.yks-tr-printing-list .yks-tr-print-rank {
		display: block !important;
		visibility: visible !important;
		margin: 0.45rem 0 0;
		padding: 0.45rem 0.65rem;
		border: 1px solid #93b4e0;
		border-radius: 4px;
		background: #eef5ff;
		color: #122c54;
		font-size: 0.92rem;
		font-weight: 800;
		line-height: 1.35;
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
	}

	html.yks-tr-printing-list .yks-tr-print-rank.is-missing {
		border-color: #cbd5e1;
		background: #f8fafc;
		color: #64748b;
		font-weight: 600;
		font-size: 0.82rem;
	}

	html.yks-tr-printing-list .yks-tr-list-head,
	html.yks-tr-printing-list .yks-tr-list-actions,
	html.yks-tr-printing-list .yks-tr-list-flash,
	html.yks-tr-printing-list .yks-tr-list-ops,
	html.yks-tr-printing-list .yks-tr-list-hint,
	html.yks-tr-printing-list .yks-tr-analysis,
	html.yks-tr-printing-list .yks-tr-list-col-ops,
	html.yks-tr-printing-list .yks-tr-list-table th:last-child,
	html.yks-tr-printing-list .yks-tr-list-table td:last-child {
		display: none !important;
	}

	html.yks-tr-printing-list .yks-tr-list-table-wrap {
		overflow: visible;
		border: 0;
	}

	html.yks-tr-printing-list .yks-tr-list-table,
	html.yks-tr-printing-list .yks-tr-list-table thead,
	html.yks-tr-printing-list .yks-tr-list-table tbody,
	html.yks-tr-printing-list .yks-tr-list-table tr {
		display: table;
		width: 100%;
		table-layout: auto;
	}

	html.yks-tr-printing-list .yks-tr-list-table thead {
		display: table-header-group;
		position: static;
		width: auto;
		height: auto;
		overflow: visible;
		clip: auto;
	}

	html.yks-tr-printing-list .yks-tr-list-table tbody {
		display: table-row-group;
	}

	html.yks-tr-printing-list .yks-tr-list-table tr {
		display: table-row;
		margin: 0;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent !important;
		box-shadow: none;
	}

	html.yks-tr-printing-list .yks-tr-list-table th,
	html.yks-tr-printing-list .yks-tr-list-table td {
		display: table-cell;
		width: auto;
	}

	html.yks-tr-printing-list .yks-tr-list-table td::before {
		content: none;
	}

	html.yks-tr-printing-list .yks-tr-list-table {
		width: 100%;
		border-collapse: collapse;
		font-size: 0.65rem;
		line-height: 1.2;
	}

	html.yks-tr-printing-list .yks-tr-list-table th,
	html.yks-tr-printing-list .yks-tr-list-table td {
		border: 1px solid #cbd5e1;
		padding: 0.18rem 0.25rem;
		text-align: left;
		vertical-align: top;
	}

	html.yks-tr-printing-list .yks-tr-list-table th {
		background: #eef2f7 !important;
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		font-weight: 800;
		font-size: 0.6rem;
	}

	html.yks-tr-printing-list .yks-tr-city,
	html.yks-tr-printing-list .yks-tr-variant {
		display: inline;
		margin: 0;
	}

	html.yks-tr-printing-list .yks-tr-flags {
		display: inline;
		margin-left: 0.2rem;
	}

	html.yks-tr-printing-list .yks-tr-flag {
		font-size: 0.55rem;
		padding: 0.05rem 0.2rem;
	}

	html.yks-tr-printing-list .yks-tr-list-table tr {
		page-break-inside: avoid;
	}

	html.yks-tr-printing-list .yks-tr-badge,
	html.yks-tr-printing-list .yks-tr-risk {
		box-shadow: none !important;
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
	}

	html.yks-tr-printing-list .yks-tr-print-footer {
		display: block !important;
		margin-top: 0.55rem;
		padding-top: 0.4rem;
		border-top: 1px solid #94a3b8;
	}

	html.yks-tr-printing-list .yks-tr-print-footer-site {
		margin: 0 0 0.15rem;
		font-size: 0.75rem;
		font-weight: 800;
		color: #122c54;
	}

	html.yks-tr-printing-list .yks-tr-print-footer-note {
		margin: 0;
		font-size: 0.68rem;
		line-height: 1.35;
		color: #64748b;
	}

	html.yks-tr-printing-list a {
		color: inherit !important;
		text-decoration: none !important;
	}

	/* Hide theme chrome leftovers */
	html.yks-tr-printing-list #wpadminbar,
	html.yks-tr-printing-list header,
	html.yks-tr-printing-list .header,
	html.yks-tr-printing-list .header-wrapper,
	html.yks-tr-printing-list footer,
	html.yks-tr-printing-list .footer-wrapper,
	html.yks-tr-printing-list .joinchat,
	html.yks-tr-printing-list .yks-tr-page-header,
	html.yks-tr-printing-list .yks-tr-calendar,
	html.yks-tr-printing-list .yks-tr-compare,
	html.yks-tr-printing-list .yks-tr-compare-tray {
		display: none !important;
	}
}

/* —— Typeahead —— */
.yks-tr-field--bolum {
	grid-column: 1 / -1;
}

.yks-tr-ac {
	position: relative;
}

.yks-tr-ac-list {
	position: absolute;
	z-index: 40;
	left: 0;
	right: 0;
	top: calc(100% + 4px);
	margin: 0;
	padding: 0.35rem 0;
	list-style: none;
	max-height: 240px;
	overflow: auto;
	border: 1px solid var(--tr-border-strong);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 32px rgba(18, 44, 84, 0.14);
}

.yks-tr-ac-list[hidden] {
	display: none !important;
}

.yks-tr-ac-list li {
	padding: 0.58rem 0.8rem;
	cursor: pointer;
	font-weight: 600;
	color: var(--tr-navy);
	font-size: 0.9rem;
}

.yks-tr-ac-list li:hover,
.yks-tr-ac-list li.is-active {
	background: var(--tr-bg-soft);
	color: var(--tr-accent);
}

/* —— Responsive —— */
@media (max-width: 820px) {
	.yks-tr-fields,
	.yks-tr-fields--filters {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.yks-tr-block-body {
		padding: 0.9rem 0.85rem 1rem;
	}

	.yks-tr-fields,
	.yks-tr-fields--filters {
		grid-template-columns: 1fr;
	}

	.yks-tr-chips {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.5rem;
	}

	.yks-tr-chip {
		display: block;
		width: 100%;
		min-width: 0;
	}

	.yks-tr-chip span {
		width: 100%;
		min-width: 0;
	}

	.yks-tr-buttons {
		flex-direction: column;
	}

	.yks-tr-btn {
		width: 100%;
	}

	.yks-tr-list-actions {
		width: 100%;
	}

	.yks-tr-list-actions .yks-tr-btn {
		flex: 1 1 calc(50% - 0.2rem);
	}

	.yks-tr-results {
		padding: 0.85rem 0.7rem 1rem;
		background: transparent;
		border: 0;
		border-radius: 0;
	}

	.yks-tr-results-head {
		padding-bottom: 0.55rem;
		margin-bottom: 0.7rem;
	}

	.yks-tr-badge {
		justify-self: end;
	}
}

/* Stacked row-cards: phones, tablets, narrow laptops — all fields, no sideways scroll */
@media (max-width: 1024px) {
	.yks-tr-table thead {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
	}

	.yks-tr-table,
	.yks-tr-table tbody,
	.yks-tr-table tr,
	.yks-tr-table td {
		display: block;
		width: 100%;
	}

	.yks-tr-table-wrap,
	.yks-tr-list-table-wrap {
		border: 0;
		background: transparent;
		overflow: visible;
	}

	.yks-tr-table tr {
		margin-bottom: 0.8rem;
		padding: 0.85rem 0.95rem 0.9rem;
		border: 1px solid var(--tr-border-strong);
		border-left: 3px solid var(--tr-navy);
		border-radius: 10px;
		background: #fff !important;
		box-shadow: 0 1px 0 rgba(18, 44, 84, 0.04);
	}

	.yks-tr-table tbody tr:hover {
		background: #fff !important;
	}

	.yks-tr-table td {
		display: grid;
		grid-template-columns: minmax(92px, 36%) 1fr;
		gap: 0.45rem 0.65rem;
		align-items: start;
		padding: 0.48rem 0;
		border: 0;
		border-bottom: 1px dashed var(--tr-border);
		text-align: right;
		width: 100%;
	}

	.yks-tr-table td:first-child {
		padding-top: 0;
	}

	.yks-tr-table td:last-child {
		border-bottom: 0;
		padding-bottom: 0;
	}

	.yks-tr-table td::before {
		content: attr(data-label);
		color: var(--tr-muted);
		font-size: 0.7rem;
		font-weight: 800;
		letter-spacing: 0.04em;
		text-transform: uppercase;
		text-align: left;
		padding-top: 0.15rem;
	}

	.yks-tr-uni,
	.yks-tr-dept {
		text-align: right;
	}

	.yks-tr-city,
	.yks-tr-variant {
		text-align: right;
	}

	.yks-tr-flags {
		justify-content: flex-end;
	}

	.yks-tr-risk-wrap {
		align-items: flex-end;
		max-width: none;
		width: 100%;
	}

	.yks-tr-risk-note {
		text-align: right;
	}

	.yks-tr-campus-note {
		text-align: left;
	}

	.yks-tr-table tbody tr.yks-tr-row--flagged {
		border-left-color: #d97706;
		box-shadow: none;
	}

	.yks-tr-badge {
		justify-self: end;
	}

	.yks-tr-row-actions,
	.yks-tr-list-ops {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0.35rem;
	}

	.yks-tr-add-btn,
	.yks-tr-compare-btn,
	.yks-tr-list-ops .yks-tr-compare-btn {
		width: 100%;
		white-space: normal;
	}

	.yks-tr-list-ops {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.yks-tr-list-ops .yks-tr-list-op {
		flex: 0 0 auto;
	}

	.yks-tr-list-ops .yks-tr-compare-btn {
		flex: 1 1 100%;
		margin-top: 0;
	}
}

/* —— Program compare (2-4) —— */
.yks-tr-compare {
	margin: 1.1rem 0 1.35rem;
	padding: 0.95rem 1rem 1.05rem;
	border: 1px solid var(--tr-border-strong);
	border-radius: var(--tr-radius);
	background: #fff;
}

.yks-tr-compare-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.55rem 1rem;
	margin-bottom: 0.55rem;
}

.yks-tr-compare-title-wrap {
	display: flex;
	align-items: baseline;
	gap: 0.55rem;
	flex-wrap: wrap;
}

.yks-tr-compare-title {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--tr-navy);
}

.yks-tr-compare-count {
	font-size: 0.82rem;
	font-weight: 800;
	color: var(--tr-muted);
	font-variant-numeric: tabular-nums;
}

.yks-tr-compare-hint {
	margin: 0 0 0.7rem;
	font-size: 0.86rem;
	line-height: 1.5;
	color: var(--tr-muted);
}

.yks-tr-compare-scroll {
	overflow-x: visible;
	width: 100%;
	max-width: 100%;
	border: 1px solid var(--tr-border);
	border-radius: 8px;
}

.yks-tr-compare-cards {
	display: none;
}

.yks-tr-compare-table {
	width: 100%;
	max-width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	font-size: 0.86rem;
}

.yks-tr-compare-table th,
.yks-tr-compare-table td {
	padding: 0.55rem 0.55rem;
	border-bottom: 1px solid var(--tr-border);
	vertical-align: top;
	text-align: left;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.yks-tr-compare-table thead th {
	background: var(--tr-bg-soft);
	border-bottom: 1px solid var(--tr-border-strong);
}

.yks-tr-compare-corner,
.yks-tr-compare-table tbody th {
	width: 18%;
	min-width: 0;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--tr-muted);
	background: #fbfcfe;
}

.yks-tr-compare-col-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.35rem;
	margin-bottom: 0.35rem;
}

.yks-tr-compare-col-idx {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.35rem;
	height: 1.35rem;
	border-radius: 6px;
	background: var(--tr-navy);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 800;
}

.yks-tr-compare-col-remove,
.yks-tr-compare-chip-x {
	border: 1px solid var(--tr-border);
	background: #fff;
	color: var(--tr-accent);
	border-radius: 6px;
	width: 1.5rem;
	height: 1.5rem;
	line-height: 1;
	cursor: pointer;
	font-weight: 800;
}

.yks-tr-compare-col-remove:hover,
.yks-tr-compare-chip-x:hover {
	background: var(--tr-accent);
	border-color: var(--tr-accent);
	color: #fff;
}

.yks-tr-compare-col-uni {
	font-weight: 800;
	color: var(--tr-navy);
	line-height: 1.35;
}

.yks-tr-compare-col-dept {
	margin-top: 0.2rem;
	font-weight: 650;
	color: var(--tr-text);
	line-height: 1.35;
}

.yks-tr-compare-flash {
	margin: 0.65rem 0 0;
	padding: 0.55rem 0.7rem;
	border-radius: 8px;
	border: 1px solid var(--tr-border);
	background: var(--tr-bg-soft);
	color: var(--tr-navy);
	font-size: 0.86rem;
	font-weight: 650;
}

.yks-tr-compare-flash.is-ok {
	border-color: #9dceb0;
	background: #e8f5ee;
	color: #166534;
}

.yks-tr-compare-flash.is-error {
	border-color: #f0b4b0;
	background: #fef2f2;
	color: #991b1b;
}

.yks-tr-compare-flash.is-info {
	border-color: #b8c9de;
	background: #eef3fa;
	color: #1e3a5f;
}

.yks-tr-compare-btn {
	min-height: 34px;
	padding: 0.28rem 0.55rem;
	border: 1px solid var(--tr-border-strong);
	border-radius: 8px;
	background: #fff;
	color: var(--tr-navy);
	font: inherit;
	font-size: 0.76rem;
	font-weight: 800;
	white-space: normal;
	line-height: 1.25;
	cursor: pointer;
}

.yks-tr-compare-btn:hover:not(:disabled) {
	background: var(--tr-navy);
	border-color: var(--tr-navy);
	color: #fff;
}

.yks-tr-compare-btn.is-on {
	background: #eef3fa;
	border-color: #b8c9de;
	color: #1e3a5f;
}

.yks-tr-compare-btn:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.yks-tr-row-actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.35rem;
}

.yks-tr-list-ops .yks-tr-compare-btn {
	margin-top: 0.35rem;
	width: 100%;
}

.yks-tr-compare-tray {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9990;
	padding: 0.55rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
	background: rgba(18, 44, 84, 0.96);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 -8px 24px rgba(12, 32, 67, 0.18);
	color: #fff;
}

.yks-tr-compare-tray-inner {
	max-width: 1140px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.55rem 0.85rem;
}

.yks-tr-compare-tray-meta {
	display: flex;
	align-items: baseline;
	gap: 0.45rem;
}

.yks-tr-compare-tray-label {
	font-size: 0.9rem;
	font-weight: 800;
}

.yks-tr-compare-tray-count {
	font-size: 0.8rem;
	font-weight: 700;
	opacity: 0.85;
	font-variant-numeric: tabular-nums;
}

.yks-tr-compare-tray-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	flex: 1 1 12rem;
	min-width: 0;
}

.yks-tr-compare-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	max-width: 100%;
	padding: 0.2rem 0.25rem 0.2rem 0.55rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	font-size: 0.74rem;
	font-weight: 650;
}

.yks-tr-compare-chip-text {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 14rem;
}

.yks-tr-compare-chip-x {
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 999px;
	border-color: rgba(255, 255, 255, 0.25);
	background: transparent;
	color: #fff;
}

.yks-tr-compare-tray-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.yks-tr-compare-tray .yks-tr-btn-primary {
	background: #fff;
	border-color: #fff;
	color: var(--tr-navy);
}

.yks-tr-compare-tray .yks-tr-btn-secondary {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.35);
	color: #fff;
}

html.yks-tr-has-compare-tray {
	scroll-padding-bottom: 5.5rem;
}

html.yks-tr-has-compare-tray .yks-tr-wrap {
	padding-bottom: 4.5rem;
}

@media (max-width: 1024px) {
	.yks-tr-compare-scroll {
		overflow: visible;
		border: 0;
		background: transparent;
	}

	.yks-tr-compare-table {
		display: none;
	}

	.yks-tr-compare-cards {
		display: flex;
		flex-direction: column;
		gap: 0.75rem;
	}

	.yks-tr-compare-card {
		border: 1px solid var(--tr-border-strong);
		border-left: 3px solid var(--tr-navy);
		border-radius: 10px;
		background: #fff;
		padding: 0.85rem 0.9rem 0.95rem;
		box-shadow: 0 1px 0 rgba(18, 44, 84, 0.04);
	}

	.yks-tr-compare-card-head {
		display: flex;
		align-items: flex-start;
		gap: 0.55rem;
		margin-bottom: 0.65rem;
		padding-bottom: 0.55rem;
		border-bottom: 1px solid var(--tr-border);
	}

	.yks-tr-compare-card-titles {
		flex: 1 1 auto;
		min-width: 0;
	}

	.yks-tr-compare-card-dl {
		margin: 0;
	}

	.yks-tr-compare-card-row {
		display: grid;
		grid-template-columns: minmax(96px, 38%) 1fr;
		gap: 0.35rem 0.55rem;
		padding: 0.4rem 0;
		border-bottom: 1px dashed var(--tr-border);
	}

	.yks-tr-compare-card-row:last-child {
		border-bottom: 0;
		padding-bottom: 0;
	}

	.yks-tr-compare-card-row dt {
		margin: 0;
		color: var(--tr-muted);
		font-size: 0.7rem;
		font-weight: 800;
		letter-spacing: 0.03em;
		text-transform: uppercase;
		padding-top: 0.12rem;
	}

	.yks-tr-compare-card-row dd {
		margin: 0;
		text-align: right;
		font-size: 0.88rem;
		font-weight: 650;
		color: var(--tr-text);
		word-break: break-word;
	}

	.yks-tr-compare-tray {
		padding: 0.45rem 0.65rem calc(0.45rem + env(safe-area-inset-bottom, 0px));
	}

	.yks-tr-compare-tray-inner {
		align-items: stretch;
		gap: 0.4rem;
	}

	.yks-tr-compare-tray-meta {
		width: 100%;
		justify-content: space-between;
	}

	.yks-tr-compare-tray-chips {
		flex: 1 1 100%;
		flex-wrap: wrap;
		overflow-x: visible;
		padding-bottom: 0.1rem;
		max-width: 100%;
	}

	.yks-tr-compare-chip-text {
		max-width: 9.5rem;
	}

	.yks-tr-compare-tray-actions {
		width: 100%;
		display: grid;
		grid-template-columns: 1.4fr 0.8fr;
		gap: 0.4rem;
	}

	.yks-tr-compare-tray-actions .yks-tr-btn {
		width: 100%;
		min-height: 40px;
	}

	html.yks-tr-has-compare-tray {
		scroll-padding-bottom: 7.5rem;
	}

	html.yks-tr-has-compare-tray .yks-tr-wrap {
		padding-bottom: 6.5rem;
	}

	/* JoinChat FAB tray üstünde kalsın */
	html.yks-tr-has-compare-tray .joinchat {
		bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px)) !important;
	}
}
