/* ================================================
   VarAtlas - Sıralama Sayfaları CSS
   Bağımsız (standalone) tasarım dosyası
   ================================================ */

/* Font Declarations */
@font-face {
	font-family: 'SF Pro Display';
	src: url('./fonts/SFProDisplay-Medium.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'SF Pro Display';
	src: url('./fonts/SFProDisplay-Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'SF Pro Display';
	src: url('./fonts/SFProDisplay-Black.woff2') format('woff2');
	font-weight: 900;
	font-style: normal;
}

@font-face {
	font-family: 'SF Pro Rounded';
	src: url('./fonts/SFProRounded-Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
}

/* Design System Variables */
:root {
	--primary-color: #3074ae;
	--primary-hover: #215988;
	--border-color: #dcdcdc;
	--text-dark: #333333;
	--text-color: #333333;
	--text-muted: #777777;
	--text-secondary: #555555;
	--body-bg: #fafafa;
	--white: #ffffff;
	--shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
	--font-stack: 'SF Pro Display', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Dark Theme */
html.dark-theme {
	--body-bg: #121212;
	--white: #1e1e1e;
	--text-dark: #e2e8f0;
	--text-color: #e2e8f0;
	--text-muted: #94a3b8;
	--text-secondary: #cbd5e1;
	--border-color: #2d3748;
	--shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
}

/* Reset & Base */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--font-stack);
	background: var(--body-bg);
	color: var(--text-dark);
	line-height: 1.5;
	padding-top: 70px;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: transparent;
	-moz-osx-font-smoothing: grayscale;
}

@media (max-width: 991px) {
	body {
		padding-top: 120px !important;
	}
}

a {
	text-decoration: none;
	color: inherit;
}

/* ── Navbar ──────────────────────────────── */
.sr-navbar {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--white);
	border-bottom: 1px solid var(--border-color);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
	height: 56px;
	display: flex;
	align-items: center;
}

.sr-navbar-inner {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 0 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.sr-navbar-logo {
	text-decoration: none;
}

.sr-navbar-logo img {
	height: 32px;
	width: auto;
	display: block;
}

.logo-text {
	font-family: 'SF Pro Rounded', 'SF Pro Display', sans-serif;
	/* font-family: SF Pro Display !important; */
	font-weight: 700;
	font-size: 25px;
	letter-spacing: -0.5px;
	/* color: var(--primary-color); */
	color: #E30A17 !important;
	text-decoration: none;
	display: inline-block;
	transition: opacity 0.2s ease;
	line-height: 1;
}

.logo-text:hover {
	opacity: 0.9;
}

.sr-navbar-links {
	display: flex;
	align-items: center;
	gap: 20px;
}

.sr-navbar-links a {
	font-size: 13px;
	font-weight: 600;
	color: var(--text-muted);
	transition: color 0.2s;
}

.sr-navbar-links a:hover {
	color: var(--primary-color);
}

.sr-theme-btn {
	background: none;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	padding: 6px 10px;
	cursor: pointer;
	color: var(--text-muted);
	font-size: 14px;
	transition: all 0.2s;
}

.sr-theme-btn:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
}

/* ── Page Layout ─────────────────────────── */
.sr-page {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 20px 16px 60px;
	flex: 1 0 auto;
}

/* ── Breadcrumb ──────────────────────────── */
.sr-breadcrumb {
	font-size: 12px;
	color: var(--text-muted);
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.sr-breadcrumb a {
	color: var(--primary-color);
	font-weight: 500;
}

.sr-breadcrumb a:hover {
	text-decoration: underline;
}

.sr-breadcrumb .sr-sep {
	font-size: 9px;
	color: var(--text-muted);
	opacity: 0.6;
}

/* ── Header ──────────────────────────────── */
.sr-header {
	margin-bottom: 20px;
}

.sr-header h1 {
	font-size: 1.5em;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 8px;
	line-height: 1.3;
}

.sr-header p {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.6;
	max-width: 800px;
}

/* ── Stats Bar ───────────────────────────── */
.sr-stats {
	display: flex;
	gap: 12px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.sr-stat-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	background: var(--white);
	border: 1px solid var(--border-color);
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	color: var(--text-dark);
}

.sr-stat-badge i {
	color: var(--primary-color);
	font-size: 13px;
}

/* ── Filter Bar ──────────────────────────── */
.sr-filter-bar {
	display: flex;
	gap: 10px;
	margin-bottom: 16px;
	flex-wrap: wrap;
	align-items: center;
}

.sr-search-input {
	flex: 1;
	min-width: 200px;
	padding: 8px 14px;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	font-size: 13px;
	font-family: var(--font-stack);
	background: var(--white);
	color: var(--text-dark);
	transition: border-color 0.2s;
	outline: none;
}

.sr-search-input:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(48, 116, 174, 0.1);
}

.sr-search-input::placeholder {
	color: var(--text-muted);
}

.sr-filter-select {
	padding: 8px 12px;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	font-size: 13px;
	font-family: var(--font-stack);
	background: var(--white);
	color: var(--text-dark);
	cursor: pointer;
	outline: none;
	min-width: 140px;
}

.sr-filter-select:focus {
	border-color: var(--primary-color);
}

.sr-result-count {
	font-size: 12px;
	color: var(--text-muted);
	font-weight: 500;
	padding: 8px 0;
	white-space: nowrap;
}

/* ── Table ────────────────────────────────── */
.sr-table-wrapper {
	overflow-x: auto;
	background: var(--white);
	border-radius: 8px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-color);
}

.sr-table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
}

.sr-table thead th {
	padding: 10px 14px;
	font-weight: 700;
	color: var(--text-dark);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-bottom: 2px solid var(--border-color);
	background: var(--body-bg);
	position: sticky;
	top: 0;
	z-index: 2;
	white-space: nowrap;
}

.sr-table thead th.sr-th-bordered {
	border-left: 1px solid var(--border-color);
}

.sr-table tbody tr {
	border-bottom: 1px solid var(--border-color);
	background: var(--white);
	cursor: pointer;
	transition: background-color 0.15s;
}

.sr-table tbody tr:hover {
	background-color: var(--body-bg);
}

.sr-table tbody tr:last-child {
	border-bottom: none;
}

.sr-table td {
	padding: 10px 14px;
	vertical-align: top;
}

.sr-table td.sr-td-bordered {
	border-left: 1px solid var(--border-color);
}

/* Row number column */
.sr-table th:first-child,
.sr-table td.sr-rank-num {
	font-weight: 700;
	font-size: 13px;
	color: var(--text-muted);
	text-align: center;
	width: 20px !important;
	min-width: 20px !important;
	padding-left: 0px !important;
	padding-right: 0px !important;
}

/* University name cell */
.sr-uni-name {
	font-weight: 600;
	color: var(--text-color);
	font-size: 13px;
	line-height: 1.4;
}

.sr-type-text {
	font-weight: 700;
}

.sr-type-text.sr-type-devlet {
	color: #10b981;
}

.sr-type-text.sr-type-vakif {
	color: #f59e0b;
}

.sr-type-text.sr-type-kktc {
	color: #3b82f6;
}

html.dark-theme .sr-type-text.sr-type-devlet {
	color: #34d399;
}

html.dark-theme .sr-type-text.sr-type-vakif {
	color: #fbbf24;
}

html.dark-theme .sr-type-text.sr-type-kktc {
	color: #60a5fa;
}

.sr-detay-line {
	font-size: 11px;
	color: var(--text-muted);
	margin-top: 3px;
}

/* Data columns */
.sr-data-col {
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 130px;
}

.sr-year-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1px 6px;
}

.sr-year-row.sr-active {
	background: rgba(48, 116, 174, 0.07);
	padding: 2px 6px;
	border-radius: 4px;
}

.sr-year-lbl {
	font-size: 10px;
	font-weight: 600;
	color: var(--text-muted);
}

.sr-year-row.sr-active .sr-year-lbl {
	font-weight: 700;
	color: var(--primary-color);
}

.sr-sira-val {
	font-weight: 600;
	color: var(--text-color);
	font-size: 12px;
}

.sr-year-row.sr-active .sr-sira-val {
	font-weight: 800;
	color: var(--primary-color);
	font-size: 13px;
}

.sr-puan-val {
	font-weight: 500;
	color: var(--text-muted);
	font-size: 11px;
}

.sr-year-row.sr-active .sr-puan-val {
	font-weight: 700;
	color: var(--primary-color);
	font-size: 12px;
}

/* ── FAQ Section ─────────────────────────── */
.sr-faq {
	margin-top: 24px;
	padding: 20px 24px;
	background: var(--white);
	border-radius: 8px;
	border: 1px solid var(--border-color);
}

.sr-faq h2 {
	font-size: 1.1em;
	margin: 0 0 14px 0;
	color: var(--text-dark);
}

.sr-faq details {
	margin-bottom: 8px;
	border-bottom: 1px solid var(--border-color);
	padding-bottom: 8px;
}

.sr-faq details:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.sr-faq summary {
	cursor: pointer;
	font-weight: 600;
	color: var(--text-dark);
	font-size: 14px;
	padding: 4px 0;
	list-style: none;
}

.sr-faq summary::-webkit-details-marker {
	display: none;
}

.sr-faq summary::before {
	content: '▸ ';
	color: var(--primary-color);
	font-size: 12px;
}

.sr-faq details[open] summary::before {
	content: '▾ ';
}

.sr-faq p {
	margin: 6px 0 0 16px;
	color: var(--text-secondary);
	font-size: 13px;
	line-height: 1.7;
}

/* ── Footer ──────────────────────────────── */
.sr-footer {
	text-align: center;
	padding: 30px 16px;
	padding-bottom: max(30px, env(safe-area-inset-bottom));
	font-size: 12px;
	color: var(--text-muted);
	border-top: 1px solid var(--border-color);
	margin-top: auto;
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 768px) {
	.sr-navbar-links {
		display: none;
	}

	.sr-header h1 {
		font-size: 1.2em;
	}

	.sr-stats {
		gap: 8px;
	}

	.sr-stat-badge {
		font-size: 11px;
		padding: 5px 10px;
	}

	.sr-filter-bar {
		flex-wrap: nowrap;
	}

	.sr-search-input {
		min-width: 0;
	}

	.sr-filter-select {
		min-width: 110px;
	}

	.sr-table thead th {
		padding: 8px 10px;
		font-size: 10px;
	}

	.sr-table td {
		padding: 8px 10px;
	}

	.sr-uni-name {
		font-size: 12px;
	}

	.sr-data-col {
		min-width: 110px;
	}

	.sr-rank-num {
		font-size: 11px;
	}
}

@media (max-width: 480px) {
	.sr-page {
		padding: 12px 10px 40px;
	}

	.sr-header h1 {
		font-size: 1.05em;
	}
}

/* ── No Results ──────────────────────────── */
.sr-no-results {
	text-align: center;
	padding: 40px 20px;
	color: var(--text-muted);
	font-size: 14px;
}

.sr-no-results i {
	font-size: 32px;
	display: block;
	margin-bottom: 12px;
	opacity: 0.4;
}


/* Body padding to prevent content from going behind the fixed top navbar */

/* ── Extracted Navbar CSS from index.css ── */
/* Fixed Top Navbar Replica */
.navbar-fixed-top {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1030;
	background-color: var(--white);
	border-bottom: 1px solid var(--border-color);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
	height: 60px;
	display: flex;
	align-items: center;
	transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.35s ease, border-color 0.35s ease;
}

.navbar-container {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-brand {
	display: flex;
	align-items: center;
}

.yok-logo-img {
	height: 35px;
	width: auto;
	display: block;
}

/* Navbar Menu Links */
.navbar-links {
	display: none;
	/* Hidden on mobile by default */
	gap: 15px;
	align-items: center;
}

@media (min-width: 992px) {
	.navbar-links {
		display: flex;
		order: 3;
		flex: 1 1 0%;
		justify-content: flex-end;
	}

	.navbar-brand {
		order: 1;
		flex: 1 1 0%;
	}

	.navbar-search {
		order: 2;
		flex: 0 0 320px;
		margin: 0 auto;
	}

	.mobile-toggle-btn {
		display: none;
	}
}

.nav-link {
	color: #555555;
	text-decoration: none;
	font-size: 13.5px;
	font-weight: 700;
	padding: 8px 12px;
	border-radius: 4px;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.nav-link:hover {
	color: var(--primary-color);
	background-color: #f1f5f9;
}

/* Dropdown styling */
.nav-dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #ffffff;
	min-width: 150px;
	box-shadow: var(--shadow-md);
	border: 1px solid #e2e8f0;
	border-radius: 4px;
	z-index: 1040;
	top: 100%;
	left: 0;
	margin-top: 4px;
}

.dropdown-content a {
	color: #333333;
	padding: 10px 14px;
	text-decoration: none;
	display: block;
	font-size: 12.5px;
	font-weight: 700;
	text-align: left;
}

.dropdown-content a:hover {
	background-color: #f1f5f9;
	color: var(--primary-color);
}

.nav-dropdown:hover .dropdown-content {
	display: block;
}

/* Search engine layout */
.navbar-search {
	display: flex;
	align-items: center;
	flex: 1;
	max-width: 280px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-input-wrapper {
	position: relative;
	flex: 1;
}

.search-input {
	width: 100%;
	height: 34px;
	padding: 6px 12px;
	font-size: 13px;
	color: #333333;
	background-color: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 4px 0 0 4px;
	outline: none;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.search-input:focus {
	border-color: #66afe9;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
}

.search-btn {
	height: 34px;
	padding: 6px 12px;
	font-size: 13px;
	color: #555555;
	background-color: #eeeeee;
	border: 1px solid #cccccc;
	border-left: none;
	border-radius: 0 4px 4px 0;
	cursor: pointer;
	transition: background-color 0.15s;
}

.search-btn:hover {
	background-color: #dddddd;
}

/* Autocomplete Suggestion Dropdown */
.search-suggestions {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background-color: #ffffff;
	border: 1px solid #dcdcdc;
	border-top: none;
	border-radius: 0 0 4px 4px;
	box-shadow: var(--shadow-md);
	max-height: 280px;
	overflow-y: auto;
	z-index: 1050;
	display: none;
}

/* Navigation Icon Buttons (Unified size, vertical center alignment) */
.theme-toggle-btn,
.mobile-search-toggle-btn,
.mobile-toggle-btn {
	background: none;
	border: none;
	color: #555555;
	font-size: 18px;
	cursor: pointer;
	height: 44px;
	width: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background-color 0.3s ease, color 0.3s ease;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

.theme-toggle-btn:hover,
.theme-toggle-btn:focus,
.theme-toggle-btn:active,
.mobile-search-toggle-btn:hover,
.mobile-search-toggle-btn:focus,
.mobile-search-toggle-btn:active,
.mobile-toggle-btn:hover,
.mobile-toggle-btn:focus,
.mobile-toggle-btn:active {
	background-color: transparent !important;
	color: var(--primary-color) !important;
	outline: none !important;
	box-shadow: none !important;
}

.mobile-search-toggle-btn {
	transition: opacity 0.12s ease, visibility 0.12s ease, background-color 0.3s ease, color 0.3s ease;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	display: none;
	/* Hidden by default when not scrolled on mobile */
}

@media (min-width: 992px) {

	.mobile-search-toggle-btn,
	.mobile-toggle-btn {
		display: none !important;
	}
}

/* Mobile open styles */
.navbar-links.open {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 110px;
	left: 0;
	right: 0;
	background-color: #ffffff;
	border-bottom: 1px solid #e5e5e5;
	box-shadow: var(--shadow-md);
	padding: 10px 15px;
	z-index: 1020;
	align-items: stretch;
}

.navbar-links.open .nav-link {
	padding: 10px;
	border-bottom: 1px solid #f1f1f1;
	width: 100%;
}

.navbar-links.open .nav-dropdown {
	display: block;
	width: 100%;
}

.navbar-links.open .dropdown-content {
	position: static;
	display: block;
	box-shadow: none;
	border: none;
	background-color: #f8fafc;
	margin-left: 15px;
	padding-left: 10px;
}

/* Theme Toggle Button Icon Smooth Transition */
.theme-toggle-btn i {
	transition: color 0.35s ease, transform 0.35s ease;
}

.theme-toggle-btn:hover i {
	transform: rotate(20deg);
}

/* Navbar PWA butonu */
.pwa-navbar-btn {
	background: none;
	border: none;
	color: #555555;
	font-size: 18px;
	cursor: pointer;
	height: 44px;
	width: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
	position: relative;
}

.pwa-navbar-btn:hover,
.pwa-navbar-btn:focus {
	background-color: transparent !important;
	color: var(--primary-color) !important;
	outline: none !important;
	box-shadow: none !important;
	transform: scale(1.1);
}

.pwa-navbar-btn:active {
	transform: scale(0.95);
}

.pwa-navbar-btn::after {
	content: '';
	position: absolute;
	top: 8px;
	right: 8px;
	width: 7px;
	height: 7px;
	background: #4ade80;
	border-radius: 50%;
	border: 1.5px solid var(--white, #fff);
	animation: pwa-pulse 2s infinite;
}

html.dark-theme .pwa-navbar-btn,
body.dark-theme .pwa-navbar-btn {
	color: #94a3b8;
}

html.dark-theme .pwa-navbar-btn:hover,
html.dark-theme .pwa-navbar-btn:focus,
body.dark-theme .pwa-navbar-btn:hover,
body.dark-theme .pwa-navbar-btn:focus {
	color: #5b9bd5 !important;
}

@media (max-width: 991px) {
	.navbar-fixed-top {
		height: 110px;
		align-items: flex-start;
		padding-top: 11.5px;
	}

	.navbar-container {
		flex-wrap: wrap;
		gap: 0;
		position: relative;
	}

	.navbar-brand {
		order: 1;
		flex: 0 0 auto;
	}

	.pwa-navbar-btn {
		order: 2;
		margin-left: auto;
		margin-right: 0;
		padding: 0 4px;
		width: 36px;
		height: 36px;
	}

	.theme-toggle-btn {
		order: 3;
		margin-left: 0;
		margin-right: 0;
		padding: 0 4px;
		width: 36px;
		height: 36px;
	}

	.mobile-search-toggle-btn {
		order: 4;
		margin-left: 0;
		margin-right: 0;
		padding: 0 4px;
		width: 36px;
		height: 36px;
	}

	.mobile-toggle-btn {
		order: 5;
		flex: 0 0 auto;
		margin-left: 0;
		padding: 0 4px;
		width: 36px;
		height: 36px;
	}

	.navbar-search {
		order: 10;
		flex: 0 0 100%;
		max-width: 100%;
		width: 100%;
		margin-top: 12px;
		display: flex;
		justify-content: center;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transition: opacity 0.12s ease, visibility 0.12s ease;
	}

	body.pwa-installed .theme-toggle-btn,
	.navbar-container > .theme-toggle-btn:first-of-type {
		margin-left: auto;
	}

	.search-input-wrapper {
		width: 100%;
		max-width: 480px;
	}

	body {
		padding-top: 120px !important;
	}

	/* Scrolled navbar state on mobile: collapse into single row and hide search bar, show search icon */
	.navbar-fixed-top.nav-scrolled {
		height: 60px;
	}

	.navbar-fixed-top.nav-scrolled .navbar-search {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}

	.navbar-fixed-top.nav-scrolled .mobile-search-toggle-btn {
		display: flex;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.navbar-fixed-top.nav-scrolled .navbar-links.open {
		top: 60px;
	}

	/* Expanded search active state inside scrolled nav: returns to original height/appearance */
	.navbar-fixed-top.nav-scrolled.search-active {
		height: 110px;
	}

	.navbar-fixed-top.nav-scrolled.search-active .navbar-search {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.navbar-fixed-top.nav-scrolled.search-active .mobile-search-toggle-btn {
		display: none;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}

	.navbar-fixed-top.nav-scrolled.search-active .navbar-links.open {
		top: 110px;
	}
}

/* ── Bölüm/Üniversite Liste Tasarımı (#srBolumList) ── */
#srBolumList {
	list-style: none;
	padding: 0;
	margin: 0;
	background: var(--white);
	border-radius: 8px;
}

#srBolumList li {
	padding: 12px 16px;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	transition: background-color 0.15s ease;
}

#srBolumList li:last-child {
	border-bottom: none;
}

#srBolumList li:hover {
	background: var(--body-bg);
}

#srBolumList li a {
	font-weight: 600;
	color: var(--primary-color);
	font-size: 14px;
	text-decoration: none;
	transition: color 0.15s ease;
}

#srBolumList li a:hover {
	text-decoration: underline;
	color: var(--primary-hover);
}

#srBolumList li .sr-stat-badge {
	flex-shrink: 0;
}

/* Autocomplete Suggestion Items (imported from index.css) */
.suggestion-item {
	padding: 8px 12px;
	font-size: 11px;
	cursor: pointer;
	border-bottom: 1px solid #f1f1f1;
	text-align: left;
	line-height: 1.4;
}

.suggestion-item:last-child {
	border-bottom: none;
}

.suggestion-item:hover {
	background-color: #f1f5f9;
	color: var(--primary-color);
}

.suggestion-item .suggestion-prog {
	font-weight: 700;
	font-size: 12.5px;
	color: #0f172a;
	display: block;
	margin-bottom: 2px;
}

.suggestion-item .suggestion-uni {
	font-weight: 500;
	font-size: 10.5px;
	color: #64748b;
	display: block;
	text-transform: uppercase;
	margin-bottom: 2px;
}

.suggestion-item .suggestion-id {
	font-size: 9.5px;
	color: var(--text-muted);
	display: block;
}

/* Dark mode for search suggestions */
body.dark-theme .search-suggestions {
	background-color: #1e1e1e;
	border-color: #4a5568;
}

body.dark-theme .suggestion-item {
	border-bottom-color: #2d3748;
}

body.dark-theme .suggestion-item .suggestion-prog {
	color: #f1f5f9;
}

body.dark-theme .suggestion-item .suggestion-uni {
	color: #94a3b8;
}

body.dark-theme .suggestion-item:hover {
	background-color: #2d3748;
}