/* 2026-siralamalari.css */

.analysis-container {
	max-width: 900px;
	margin: 0 auto;
}

.analysis-breadcrumb {
	text-align: left;
	padding: 0px 0;
}

.analysis-header {
	text-align: left;
	padding: 0;
	margin-bottom: 5px;
}

.analysis-header h1 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 8px;
	text-align: left;
}

.analysis-header p {
	font-size: 14px;
	color: var(--text-muted);
	margin-bottom: 0;
	text-align: left;
}

.analysis-section {
	padding: 0;
	margin-bottom: 15px;
}

.analysis-highlight-box {
	background-color: var(--white);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	padding: 15px;
	display: flex;
	align-items: center;
	gap: 15px;
}

.analysis-highlight-icon {
	font-size: 24px;
	color: var(--primary-color);
}

.analysis-highlight-label {
	font-size: 13px;
	font-weight: 700;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.analysis-highlight-text {
	font-size: 16px;
	font-weight: 600;
	color: var(--text-dark);
}

.analysis-highlight-value {
	color: var(--primary-color);
	font-weight: 800;
}

.analysis-section-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.analysis-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 15px;
}

.analysis-card {
	background: var(--white);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	padding: 15px;
}

.analysis-card-title {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.analysis-card-title.down {
	color: #dc2626;
}

.analysis-card-title.up {
	color: #16a34a;
}

.analysis-card-title.neutral {
	color: #eab308;
}

html.dark-theme .analysis-card-title.down,
html.dark-theme .analysis-list-value.down {
	color: #f87171;
}

html.dark-theme .analysis-card-title.up,
html.dark-theme .analysis-list-value.up {
	color: #4ade80;
}

.analysis-list {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 14px;
	color: var(--text-dark);
}

.analysis-list li {
	padding: 8px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.analysis-list li:not(:last-child) {
	border-bottom: 1px solid var(--border-color);
}

.analysis-item-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
	padding-right: 10px;
}

.analysis-item-info .dep-name {
	font-weight: 600;
	font-size: 13.5px;
	color: var(--text-dark);
	line-height: 1.3;
}

.analysis-item-info .uni-name {
	font-size: 12px;
	color: var(--text-muted);
	font-weight: 400;
	line-height: 1.2;
}

.analysis-list-value {
	white-space: nowrap;
	align-self: center;
}

.analysis-list-value.down {
	font-weight: 600;
	color: #dc2626;
}

.analysis-list-value.up {
	font-weight: 600;
	color: #16a34a;
}

.analysis-table-wrapper {
	background: var(--white);
	/* border: 1px solid var(--border-color); */
	/* border-radius: 8px; */
	overflow: hidden;
}

.analysis-table-scroll {
	overflow-x: auto;
}

.analysis-table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
	font-size: 14px;
	white-space: nowrap;
}

.analysis-table th {
	padding: 12px 15px;
	font-weight: 600;
}

.analysis-table th.col-bolum {
	font-weight: 700;
	color: var(--primary-color);
}

.analysis-table th.col-highlight {
	font-weight: 700;
	background-color: rgba(48, 116, 174, 0.1);
}

.analysis-table thead tr {
	background-color: rgba(48, 116, 174, 0.01);
	border-bottom: 1px solid var(--border-color);
}

.analysis-table tbody tr:not(:last-child) {
	border-bottom: 1px solid var(--border-color);
}

.analysis-table td {
	padding: 12px 15px;
}

.analysis-table td.col-bolum {
	font-weight: 600;
	color: var(--text-dark);
}

.analysis-table td.col-highlight {
	font-weight: 700;
	background-color: rgba(48, 116, 174, 0.03);
}

.analysis-table-footer {
	padding: 10px 15px;
	font-size: 12px;
	color: var(--text-muted);
	border-top: 1px solid var(--border-color);
	background-color: rgba(0, 0, 0, 0.01);
}

/* Extracted from Python inline styles */
.highlight-list-item {
	padding: 12px 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

html:not(.dark-theme) .highlight-list-item {
	border-bottom: 1px solid var(--border-color);
}

.text-muted {
	color: var(--text-muted);
}

.highlight-rank {
	font-weight: 600;
	color: var(--primary-color);
}

.vertical-highlight-box {
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	padding: 20px;
}

.mb-15 {
	margin-bottom: 15px;
}

.reset-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.icon-yellow {
	color: #eab308;
}

.icon-primary {
	color: var(--primary-color);
}

/* ToC Container Styles */
.toc-container {
	/* background: var(--white); */
	/* border: 1px solid var(--border-color); */
	border-radius: 10px;
	/* padding: 16px 20px; */
	margin-bottom: 20px;
}

.toc-title {
	margin-top: 0;
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--text-dark);
}

.toc-list {
	margin: 0;
	padding-left: 20px;
	list-style-type: disc;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.toc-list li {
	color: var(--primary-color);
}

.toc-list li a {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	transition: color 0.2s ease;
}

.toc-list li a:hover {
	text-decoration: underline;
}

/* Top 10 Comparison Section Styles */
.top10-section-header {
	margin-bottom: 15px;
}

.top10-section-desc {
	font-size: 15px;
	color: var(--text-muted);
	margin-top: 4px;
	margin-bottom: 15px;
}

/* Dropdown Selector */
.top10-dropdown-wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	flex-wrap: wrap;
	padding-left: 2px;
}

.top10-dropdown-label {
	font-size: 15px;
	font-weight: 600;
	color: var(--text-dark);
	display: flex;
	align-items: center;
	gap: 6px;
}

.top10-select-box {
	position: relative;
	min-width: 250px;
	max-width: 100%;
}

.top10-select {
	width: 100%;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: var(--white);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	padding: 10px 36px 10px 14px;
	font-family: var(--font-stack, 'SF Pro Display', sans-serif);
	font-size: 15px;
	font-weight: 600;
	color: var(--text-dark);
	cursor: pointer;
	transition: all 0.2s ease;
	outline: none;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.top10-select:hover,
.top10-select:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(48, 116, 174, 0.12);
}

.top10-select-box .select-icon {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	color: var(--text-muted);
	font-size: 13px;
}

html.dark-theme .top10-select {
	background: #1e293b;
	border-color: #334155;
	color: #f1f5f9;
}

html.dark-theme .top10-select:hover,
html.dark-theme .top10-select:focus {
	border-color: var(--primary-color);
}

/* Cards & Tables (Option A: All cards visible sequentially for maximum SEO indexing) */
.top10-card {
	display: block;
	background: var(--white);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
	margin-bottom: 20px;
	scroll-margin-top: 90px;
}

.top10-card-header {
	padding: 14px 18px;
	padding-left: 16px;
	background: rgba(48, 116, 174, 0.01) !important;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.top10-card-title {
	display: flex;
	align-items: center;
	gap: 8px;
}

.top10-card-title h3 {
	font-size: 17px;
	font-weight: 700;
	margin: 0;
	color: var(--text-dark);
	display: flex;
	align-items: center;
	gap: 8px;
}

.header-badge {
	display: none;
	font-size: 11.5px;
	font-weight: 600;
	background: var(--primary-color);
	color: #fff;
	padding: 2px 8px;
	border-radius: 10px;
	text-transform: uppercase;
	letter-spacing: 0.4px;
}

.top10-dep-link {
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-color);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: gap 0.2s ease;
}

.top10-dep-link:hover {
	gap: 9px;
	text-decoration: underline;
}

/* Table Styling - Larger Fonts & 10px Left Padding */
.top10-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.top10-table th {
	padding: 10px 12px;
	font-weight: 600;
	background-color: rgba(48, 116, 174, 0.04);
	border-bottom: 1px solid var(--border-color);
}

.top10-table td {
	padding: 10px 12px;
	border-bottom: 1px solid var(--border-color);
	vertical-align: middle;
}

.top10-table th:first-child,
.top10-table td:first-child {
	padding-left: 10px;
}

.top10-table .col-rank-h,
.top10-table .col-rank {
	width: 36px;
	text-align: center;
	padding-left: 8px;
	padding-right: 4px;
}

.top10-table .col-uni {
	min-width: 160px;
	max-width: 280px;
}

.top10-table .col-2025-h,
.top10-table .col-year-2025 {
	white-space: nowrap;
	font-weight: 500;
	font-size: 14px;
	text-align: right;
	color: #353d47;
	padding-right: 14px;
}

html.dark-theme .top10-table .col-year-2025 {
	color: #94a3b8;
}

.top10-table .col-diff-h,
.top10-table .col-diff {
	white-space: nowrap;
	text-align: center;
	padding-left: 6px;
	padding-right: 6px;
}

.top10-table .col-2026-h,
.top10-table .col-year-2026 {
	white-space: nowrap;
	font-weight: 700;
	font-size: 15px;
}

/* Uni Name Ellipsis */
.uni-title {
	font-weight: 600;
	color: var(--text-dark);
	font-size: 14.5px;
	line-height: 1.3;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Uni Subtext (Language & Burs info in parenthesis without background box) */
.uni-subtext {
	font-size: 11.5px;
	color: var(--text-muted);
	font-weight: 400;
	display: block;
	margin-top: 1px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}

/* Rank numbers */
.rank-num {
	font-weight: 700;
	font-size: 12.5px;
	color: var(--text-muted);
}

.rank-num.rank-1 {
	color: #eab308;
	font-size: 14px;
}

.rank-num.rank-2 {
	color: #94a3b8;
	font-size: 13px;
}

.rank-num.rank-3 {
	color: #d97706;
	font-size: 13px;
}

.rank-value {
	font-weight: 700;
	color: var(--text-dark);
	font-size: 15px;
}

.quota-sub {
	display: block;
	font-size: 10.5px;
	color: var(--text-muted);
	font-weight: 400;
}

/* Minimal Diff Indicators (Kontenjan Page Style with Tiny SVG Arrow) */
.diff-minimal {
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	gap: 2px;
}

.diff-arrow {
	display: inline-block;
	vertical-align: middle;
	margin-right: 1px;
}

.diff-minimal.up {
	color: #16a34a;
}

.diff-minimal.down {
	color: #dc2626;
}

.diff-minimal.same {
	color: #64748b;
}

.diff-minimal.new {
	color: #2563eb;
}

html.dark-theme .diff-minimal.up {
	color: #4ade80;
}

html.dark-theme .diff-minimal.down {
	color: #f87171;
}

html.dark-theme .diff-minimal.same {
	color: #94a3b8;
}

html.dark-theme .diff-minimal.new {
	color: #60a5fa;
}

/* Mobile Optimizations - 10px Left Padding & Ellipsis Max Width */
@media (max-width: 600px) {

	.top10-table th,
	.top10-table td {
		padding: 8px 6px;
		font-size: 13px;
	}

	.top10-table th:first-child,
	.top10-table td:first-child {
		padding-left: 10px;
	}

	.top10-table .col-uni {
		min-width: 120px;
		max-width: 160px;
	}

	.uni-title {
		font-size: 13.5px;
	}

	.uni-type-badge {
		font-size: 10.5px;
		padding: 1px 5px;
	}

	.diff-tag {
		font-size: 11.5px;
		padding: 2px 5px;
	}

	.top10-card-header {
		padding: 12px 14px;
		padding-left: 12px;
	}
}

/* FAQ Accordion Section Styles */
.faq-accordion-container {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 15px;
}

.faq-accordion-item {
	background: var(--white);
	border: 1px solid var(--border-color);
	border-radius: 10px;
	padding: 14px 18px;
	transition: all 0.2s ease;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.faq-accordion-item[open] {
	border-color: var(--primary-color);
	box-shadow: 0 4px 12px rgba(48, 116, 174, 0.08);
}

.faq-accordion-question {
	font-size: 14.5px;
	font-weight: 600;
	color: var(--text-dark);
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	user-select: none;
}

.faq-accordion-question::-webkit-details-marker {
	display: none;
}

.faq-accordion-question::after {
	content: '\f078';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 12px;
	color: var(--text-muted);
	transition: transform 0.2s ease;
	margin-left: 10px;
}

.faq-accordion-item[open] .faq-accordion-question::after {
	transform: rotate(180deg);
	color: var(--primary-color);
}

.faq-accordion-answer {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid var(--border-color);
	font-size: 14px;
	color: var(--text-dark);
	line-height: 1.5;
}

.faq-accordion-answer p {
	margin: 0;
}

html.dark-theme .faq-accordion-item {
	background: #1e293b;
	border-color: #334155;
}

html.dark-theme .faq-accordion-item[open] {
	border-color: var(--primary-color);
}

/* Source Citation Box & GEO Prose Summary Styles */
.source-citation-box {
	/* background: rgba(48, 116, 174, 0.04); */
	/* border: 1px solid rgba(48, 116, 174, 0.2); */
	border-radius: 8px;
	opacity: 0.9;
	/* padding: 12px 16px; */
	margin-bottom: 20px;
}

.source-citation-box p {
	margin: 0;
	font-size: 13.5px;
	color: var(--text-dark);
	line-height: 1.5;
}

.section-summary-prose {
	font-size: 13.5px;
	color: var(--text-muted);
	line-height: 1.5;
	margin-bottom: 14px;
	background: none;
	padding: 0;
	border: none;
	font-weight: 400;
}

.section-summary-prose strong {
	color: var(--text-dark);
	font-weight: 600;
}

html.dark-theme .section-summary-prose strong {
	color: #f1f5f9;
}

/* Side-by-side Title Icons Group */
.title-icons-group {
	display: inline-flex;
	align-items: center;
	gap: 3px;
}

.title-icons-group .icon-down {
	color: #dc2626;
	font-size: 17px;
}

.title-icons-group .icon-up {
	color: #16a34a;
	font-size: 17px;
}

html.dark-theme .title-icons-group .icon-down {
	color: #f87171;
}

html.dark-theme .title-icons-group .icon-up {
	color: #4ade80;
}

/* Stability Badges & Unfilled Quota Badges */
.stability-badge {
	font-size: 12px;
	font-weight: 600;
	padding: 3px 8px;
	border-radius: 6px;
	display: inline-block;
}

.stability-badge.up {
	background: rgba(22, 163, 74, 0.1);
	color: #15803d;
	border: 1px solid rgba(22, 163, 74, 0.2);
}

.stability-badge.down {
	background: rgba(220, 38, 38, 0.1);
	color: #b91c1c;
	border: 1px solid rgba(220, 38, 38, 0.2);
}

.stability-badge.same {
	background: rgba(100, 116, 139, 0.1);
	color: #475569;
	border: 1px solid rgba(100, 116, 139, 0.2);
}

.mode-badge {
	font-size: 10.5px;
	font-weight: 500;
	background: rgba(48, 116, 174, 0.1);
	color: var(--primary-color);
	padding: 1px 5px;
	border-radius: 4px;
	margin-left: 4px;
}

html.dark-theme .stability-badge.up {
	background: rgba(34, 197, 94, 0.15);
	color: #4ade80;
	border-color: rgba(34, 197, 94, 0.3);
}

html.dark-theme .stability-badge.down {
	background: rgba(239, 68, 68, 0.15);
	color: #f87171;
	border-color: rgba(239, 68, 68, 0.3);
}

html.dark-theme .stability-badge.same {
	background: rgba(148, 163, 184, 0.15);
	color: #cbd5e1;
	border-color: rgba(148, 163, 184, 0.3);
}

html.dark-theme .mode-badge {
	background: rgba(99, 102, 241, 0.2);
	color: #818cf8;
}

/* Unfilled Module Styles */
.unfilled-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
}

.unfilled-stat-card {
	background: var(--bg-secondary);
	padding: 20px;
	border-radius: 8px;
	text-align: center;
	border: 1px solid var(--border-color);
}

.unfilled-stat-card.highlight {
	background: rgba(234, 179, 8, 0.1);
	border-color: rgba(234, 179, 8, 0.3);
}

html.dark-theme .unfilled-stat-card.highlight {
	background: rgba(234, 179, 8, 0.15);
	border-color: rgba(234, 179, 8, 0.3);
}

.unfilled-stat-card .stat-number {
	font-size: 2em;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 5px;
	line-height: 1;
}

.unfilled-stat-card.highlight .stat-number {
	color: #eab308;
}

.unfilled-stat-card .stat-label {
	font-size: 0.9em;
	color: var(--text-secondary);
	font-weight: 500;
}

.two-col-info {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
	.two-col-info {
		grid-template-columns: 1fr;
	}
}

.info-block {
	background: var(--bg-secondary);
	padding: 20px;
	border-radius: 8px;
	border: 1px solid var(--border-color);
	margin: 10px 0;
}

.info-block-title {
	font-size: 1.1em;
	margin-bottom: 15px;
	color: var(--text-primary);
	border-bottom: 1px solid var(--border-color);
	padding-bottom: 8px;
}

.mini-stats-table {
	width: 100%;
	border-collapse: collapse;
}

.mini-stats-table th,
.mini-stats-table td {
	padding: 8px;
	border-bottom: 1px solid var(--border-color);
	font-size: 0.9em;
}

.mini-stats-table th {
	text-align: left;
	color: var(--text-secondary);
	font-weight: 600;
}

.mini-stats-table tr:last-child td {
	border-bottom: none;
}

.text-right {
	text-align: right;
}

.puan-chip {
	display: inline-block;
	padding: 2px 8px;
	background: rgba(99, 102, 241, 0.1);
	color: #6366f1;
	border-radius: 12px;
	font-size: 0.85em;
	font-weight: 600;
}

html.dark-theme .puan-chip {
	background: rgba(99, 102, 241, 0.2);
	color: #818cf8;
}

.cat-chip {
	display: inline-block;
	padding: 3px 8px;
	background: var(--bg-tertiary);
	color: var(--text-secondary);
	border-radius: 4px;
	font-size: 0.85em;
	font-weight: 500;
}

.paid-badge {
	background: rgba(234, 179, 8, 0.15) !important;
	color: #ca8a04 !important;
}

html.dark-theme .paid-badge {
	background: rgba(234, 179, 8, 0.2) !important;
	color: #eab308 !important;
}

.info-note {
	font-size: 0.85em;
	color: var(--text-secondary);
	line-height: 1.4;
}

.btn-detail {
	display: inline-block;
	padding: 4px 12px;
	background: var(--primary-color);
	color: white;
	text-decoration: none;
	border-radius: 4px;
	font-size: 0.85em;
	font-weight: 500;
	transition: background-color 0.2s ease;
}

.btn-detail:hover {
	background: var(--primary-hover);
	text-decoration: none;
	color: white;
}

/* Back to Top Button */
#backToTopBtn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--primary-color);
	color: white;
	border: none;
	font-size: 1.2rem;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.3s ease;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
}

#backToTopBtn.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

#backToTopBtn:hover {
	background-color: var(--primary-hover);
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
	#backToTopBtn {
		bottom: 20px;
		right: 20px;
		width: 45px;
		height: 45px;
		font-size: 1.1rem;
	}
}

.sub-section-title {
	margin-bottom: 5px;
}

#dolmayan-kontenjanlar .analysis-table-wrapper {
	border-radius: 10px;
	overflow: hidden;
}
/* Sub Navbar that appears on scroll */
.sub-navbar {
    position: fixed;
    top: 60px; /* Below main navbar */
    left: 0;
    right: 0;
    height: 50px;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1020;
    display: flex;
    align-items: center;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.sub-navbar.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.sub-navbar-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sub-navbar-title {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-dark);
}

.sub-navbar-dropdown {
    position: relative;
}

.sub-navbar-btn {
    background: rgba(48, 116, 174, 0.08);
    color: var(--primary-color);
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.sub-navbar-btn:hover {
    background: rgba(48, 116, 174, 0.15);
}

.sub-navbar-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 12px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    min-width: 250px;
    box-shadow: var(--shadow-md);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.sub-navbar-menu.show {
    display: flex;
}

.sub-navbar-link {
    padding: 12px 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s, color 0.2s;
}

.sub-navbar-link:last-child {
    border-bottom: none;
}

.sub-navbar-link:hover {
    background-color: rgba(48, 116, 174, 0.05);
    color: var(--primary-color);
}


/* Logo Wrapper Styles */
.uni-logo-wrapper {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border-radius: 8px;
	padding: 4px;
	margin-right: 12px;
}

.uni-logo {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
