/* 滾動條css */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

::-webkit-scrollbar-thumb {
	-webkit-border-radius: 4px;
	border-radius: 4px;
	background: rgb(219, 219, 219);
}

.search-suggestions .suggestion-section {
	padding: 0.3em 1em 0.1em 1em;
	font-size: 0.95em;
	color: #aaa;
	background: #232323;
	border-bottom: 1px solid #333;
	font-weight: bold;
}

/* 搜尋建議下拉選單樣式 */
.search-suggestions {
	position: absolute;
	background: #232323;
	color: #fff;
	border: 1px solid #444;
	border-radius: 0 0 6px 6px;
	max-height: 220px;
	overflow-y: auto;
	width: 300px;
	z-index: 1000;
	left: 0;
	top: 100%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.search-suggestions .suggestion-item {
	padding: 0.5em 1em;
	cursor: pointer;
	white-space: nowrap;
}

.search-suggestions .suggestion-item:hover,
.search-suggestions .suggestion-item.active {
	background: #42aaff;
	color: #222;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
	color: #ddd;
	margin: 0;
	min-height: 100vh;
}

.disclaimer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100vw;
	z-index: 999;
	background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1e 100%);
	color: #aaa;
	padding: 1em;
	font-size: 0.9em;
	text-align: center;
	border-top: 2px solid #3d3d5c;
	transition: transform 0.3s ease-out;
	box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
}

.disclaimer a {
	color: #4a90e2;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.disclaimer a:hover {
	color: #50c878;
	text-decoration: underline;
}

.disclaimer.hidden {
	transform: translateY(100%);
}

.top-bar {
	position: sticky;
	top: 0;
	background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
	z-index: 100;
	padding: 1.2em 2em;
	border-bottom: 2px solid #0f3460;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.toggle-navbar-btn {
	position: sticky;
	top: 0;
	bottom: auto;
	left: 20px;
	width: 60px;
	height: 70px;
	margin-top: -25px;
	margin-bottom: 25px;
	border-radius: 0 0 8px 8px;
	border: 2px solid #0f3460;
	border-top: none;
	background: linear-gradient(180deg, #16213e 0%, #0f3460 100%);
	color: #4a90e2;
	cursor: pointer;
	font-size: 1.2em;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 99;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.toggle-navbar-btn:hover {
	background: linear-gradient(180deg, #1e3a6f 0%, #16213e 100%);
	color: #50c878;
	transform: scale(1.1);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.toggle-navbar-btn .toggle-icon {
	transition: transform 0.3s ease;
	display: inline-block;
	margin-top: 15px;
}

.toggle-navbar-btn.collapsed .toggle-icon {
	transform: rotate(180deg);
	margin-top: 0;
	margin-bottom: 10px;
}

.toggle-navbar-btn.collapsed {
	height: 50px;
}

#navbar-content {
	transition: all 0.3s ease;
	overflow: hidden;
	max-height: 2000px;
	opacity: 1;
}

.top-bar.collapsed #navbar-content {
	max-height: 0;
	opacity: 0;
	padding: 0;
	margin: 0;
}

.top-bar.collapsed {
	padding: 0 2em;
	min-height: 0;
}

.controls {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.2em;
}

.search-controls {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.8em;
	width: 100%;
	font-size: 0.9em;
}

.button-controls {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.6em;
}

.search-filter-controls {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.8em;
}

.search-controls input[type='text'] {
	font-size: inherit;
}

.search-controls input[type='number'] {
	font-size: inherit;
}

.search-controls button {
	font-size: inherit;
}

.region-controls {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
	width: 100%;
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.region-controls.show {
	max-height: 200px;
	padding: 0.5em 0;
}

#region-checkboxes {
	display: grid;
	grid-template-columns: repeat(10, minmax(80px, 1fr));
	gap: 0.5em;
	width: 100%;
}

#region-checkboxes label {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.toggle-regions-btn,
.toggle-resistance-btn {
	padding: 0.5em 1em;
	border-radius: 6px;
	border: 1px solid #4a90e2;
	background: linear-gradient(135deg, #2d5a8a 0%, #1e3a5f 100%);
	color: #fff;
	cursor: pointer;
	font-size: 0.9em;
	transition: all 0.3s ease;
	font-weight: 500;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-regions-btn:hover,
.toggle-resistance-btn:hover {
	background: linear-gradient(135deg, #3d6a9a 0%, #2e4a6f 100%);
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.toggle-map-btn {
	padding: 0.5em 1em;
	border-radius: 6px;
	border: 1px solid #50c878;
	background: linear-gradient(135deg, #2d6a4f 0%, #1e4d3a 100%);
	color: #fff;
	cursor: pointer;
	font-size: 0.9em;
	transition: all 0.3s ease;
	font-weight: 500;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-map-btn:hover {
	background: linear-gradient(135deg, #3d7a5f 0%, #2e5d4a 100%);
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.toggle-map-btn.chat-btn {
	border-color: #ff4444;
	background: linear-gradient(135deg, #8b0000 0%, #5c0000 100%);
	color: #ff4444;
}

.toggle-map-btn.chat-btn:hover {
	background: linear-gradient(135deg, #9b1010 0%, #6c1010 100%);
	border-color: #ff6666;
	color: #ff6666;
}

.banner-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 0 70px;
	box-sizing: border-box;
	margin-bottom: 10px;
}

.banner-link {
	display: block;
	flex: 1;
	max-width: calc(50% - 20px);
	margin: 0 20px;
	transition: transform 0.3s ease;
}

.banner-link:first-child {
	margin-left: 0;
}

.banner-link:last-child {
	margin-right: 0;
}

.banner-link:hover {
	transform: translateY(-3px);
}

.banner-image {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	transition: box-shadow 0.3s ease;
}

.banner-link:hover .banner-image {
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.analytics-container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 15px 70px;
	box-sizing: border-box;
}

.analytics-card {
	background: linear-gradient(135deg, #2d2d44 0%, #1e1e32 100%);
	border: 2px solid #4a90e2;
	border-radius: 12px;
	padding: 20px 40px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
	min-width: 400px;
}

.analytics-title {
	text-align: center;
	font-size: 1.2em;
	font-weight: 600;
	color: #ffd700;
	margin-bottom: 15px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.analytics-data {
	display: flex;
	justify-content: space-around;
	gap: 30px;
}

.analytics-item {
	text-align: center;
}

.analytics-label {
	font-size: 0.9em;
	color: #aaa;
	margin-bottom: 8px;
}

.analytics-value {
	font-size: 2em;
	font-weight: bold;
	color: #4a90e2;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.level-range-select {
	padding: 0.5em 2em 0.5em 1em;
	border-radius: 8px;
	border: 2px solid #4a90e2;
	background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
	color: #fff;
	font-size: 0.95em;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a90e2' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.8em center;
	min-width: 120px;
}

.level-range-select:hover {
	border-color: #50c878;
	box-shadow: 0 0 8px rgba(80, 200, 120, 0.3);
}

.level-range-select:focus {
	outline: none;
	border-color: #50c878;
	box-shadow: 0 0 8px rgba(80, 200, 120, 0.4);
	transform: translateY(-1px);
}

.level-range-select option {
	background: #1a1a2e;
	color: #fff;
	padding: 0.5em;
}

input[type='text'] {
	width: 200px;
	padding: 0.6em 1em;
	border-radius: 8px;
	border: 2px solid #4a90e2;
	background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
	color: #fff;
	font-size: 0.95em;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input[type='text']:focus {
	outline: none;
	border-color: #50c878;
	box-shadow: 0 0 8px rgba(80, 200, 120, 0.4);
	transform: translateY(-1px);
}

label {
	font-size: 0.9em;
}

#drop-container {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
	padding: 1em 2em;
	padding-bottom: 4em;
}

.monster-card {
	display: flex;
	flex-direction: row;
	background: linear-gradient(135deg, #2d2d44 0%, #1e1e32 100%);
	border: 2px solid #3d3d5c;
	border-radius: 12px;
	padding: 1.2em;
	width: 100%;
	white-space: normal;
	box-sizing: border-box;
	margin-bottom: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
	transition: all 0.3s ease;
}

.monster-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
	border-color: #4a90e2;
}

/* 新增樣式 */
.monster-info-container {
	flex: 1;
	/*  怪物資訊部分佔用1份空間，您可以調整比例，例如 flex: 0 0 300px; 或 flex-basis: 300px; */
	padding-right: 1em;
	/*  在右側添加一些間距 */
	border-right: 1px solid #444;
	/*怪物和爆率之間的分割條*/
	/*  添加分隔線 */
	text-align: center;
	/* 保持怪物圖片和名稱居中 */
}

.items-outer-container {
	flex: 2;
	/*  掉落物部分佔用2份空間，您可以調整比例 */
	padding-left: 1em;
	/*  在左側添加一些間距 */
	overflow-y: auto;
	/*  如果掉落物列表很長，允許滾動 */
	max-height: 450px;
	/*  可以設置一個最大高度，根據您的怪物卡片平均高度調整 */
}

.monster-image {
	width: 50px;
	height: 50px;
	object-fit: contain;
	margin-bottom: 0.5em;
}

.monster-name {
	font-weight: bold;
	color: #ffd700;
	margin-bottom: 0.5em;
	font-size: 1.1em;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	letter-spacing: 0.5px;
}

.monster-attr {
	display: grid;
	grid-template-columns: repeat(2, auto);
	gap: 0.4em;
	justify-content: center;
	margin: 0.5em auto 1em auto;
	padding: 0 1em;
	/* width: 100%; */
	/* 確保屬性容器不會過度擴張，如果需要可以設置 max-width */
	box-sizing: border-box;
}

.attr-box {
	background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
	border: 1px solid #4a4a6a;
	border-radius: 6px;
	padding: 0.4em 0.8em;
	font-size: 0.85em;
	color: #ccc;
	white-space: nowrap;
	text-align: center;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	transition: all 0.2s ease;
}

.attr-box:hover {
	transform: translateY(-1px);
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
	border-color: #5a5a7a;
}

.attr-box.fullwidth {
	grid-column: span 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0.5em 0.6em;
}

.item-group {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	align-items: flex-start;
	margin-bottom: 8px;
}

.item-group>div {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	width: 100%;
}

.item {
	display: flex;
	align-items: center;
	gap: 0.5em;
	margin-bottom: 0.3em;
	text-align: left;
	/* padding-left: 1em; */
	/*  這個 padding 可以移到 .items-outer-container 或者保留，看效果 */
}

.hide-text {
	display: inline-block;
	margin: 2px;
}

.hide-text .item-icon {
	margin: 0;
}

.only-image-mode {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 4px;
}

.hide-text span {
	display: none;
}

.hide-text:hover span {
	display: inline-block;
	position: absolute;
	background: rgba(0, 0, 0, 0.85);
	color: #fff;
	padding: 0.2em 0.4em;
	border-radius: 4px;
	margin-left: 5px;
	z-index: 10;
	white-space: nowrap;
}

mark {
	background-color: yellow;
	color: black;
}

.item-icon.highlighted {
	box-shadow: 0 0 6px 3px gold;
	border-radius: 4px;
}

.toggle-all-btn,
.toggle-default-btn {
	margin-right: 1em;
	padding: 0.5em 1em;
	border-radius: 6px;
	border: 1px solid #9b59b6;
	background: linear-gradient(135deg, #6c3483 0%, #4a235a 100%);
	color: #fff;
	cursor: pointer;
	font-size: 0.9em;
	font-weight: 500;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-all-btn:hover,
.toggle-default-btn:hover {
	background: linear-gradient(135deg, #7c4493 0%, #5a336a 100%);
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	border-color: #bb8fce;
}

.share-btn,
#share-btn {
	padding: 0.5em 1em;
	border-radius: 6px;
	border: 1px solid #42aaff;
	background: linear-gradient(135deg, #1e5a9a 0%, #0e3a6a 100%);
	color: #42aaff;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.share-btn:hover,
#share-btn:hover {
	background: linear-gradient(135deg, #2e6aaa 0%, #1e4a7a 100%);
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

input[type='checkbox'] {
	appearance: none;
	-webkit-appearance: none;
	width: 18px;
	height: 18px;
	border: 2px solid #666;
	border-radius: 4px;
	background: #333;
	cursor: pointer;
	position: relative;
	vertical-align: middle;
	margin-top: 0;
	margin-right: 1px;
	transition: border-color 0.2s, background 0.2s;
}

input[type='checkbox']:checked {
	background: #42aaff;
	border-color: #42aaff;
}

input[type='checkbox']:checked::after {
	content: '';
	position: absolute;
	left: 5px;
	top: 1px;
	width: 4px;
	height: 9px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

input[type='number'] {
	width: 60px;
	padding: 0.5em;
	border-radius: 5px;
	border: 1px solid #666;
	background: #333;
	color: #fff;
	font-size: 1em;
	box-sizing: border-box;
}

/* 屬性剋制樣式 */
.resistance-tag {
	display: inline-flex;
	align-items: center;
	padding: 3px 8px;
	border-radius: 4px;
	margin: 1px;
	font-size: 0.9em;
	font-weight: bold;
	color: white;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* 屬性顏色 */
.resistance-tag.resistance-fire {
	background-color: #cc3700;
}

.resistance-tag.resistance-poison {
	background-color: #6a3da8;
}

.resistance-tag.resistance-ice {
	background-color: #4f95b8;
}

.resistance-tag.resistance-lightning {
	background-color: #ffa500;
}

.resistance-tag.resistance-holy {
	background-color: #ffd700;
	color: #333;
}

.resistance-tag.resistance-heal {
	background-color: #2ecc71;
}

.resistance-tag.resistance-all2 {
	background: linear-gradient(45deg, #333 0%, #666 100%);
	padding: 4px 8px;
}

/* 懸停效果 */
.resistance-tag:hover {
	transform: translateY(-1px);
	transition: all 0.2s ease;
}

.resistance-controls {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
	width: 100%;
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.resistance-controls.show {
	max-height: 200px;
	padding: 0.5em;
}

.job-row span {
	padding: 0 4px;
	border-radius: 3px;
}

.hover-box {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.upper-box,
.lower-box {
	flex: 1;
	display: flex;
	justify-content: space-between;
}

.monster-summary-card {
	transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.monster-summary-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.monster-summary-card.expanded {
	border-color: #00bcd4;
	/* 例如，高亮已選中的簡化卡片 */
	background-color: #333;
}

.monster-card-detail .monster-image {
	width: 100px;
	/* 調整詳細視圖中的怪物圖片大小 */
	height: 100px;
}

.monster-card-detail .items-outer-container {
	/*max-height: 500px;
	/* 限制掉落物區域的高度，使其可滾動 */
	overflow-y: auto;
}

.img-container,
.attr-container,
.job-container,
.stats-container {
	flex: 1;
}

/* 選項容器樣式 */
#resistance-checkboxes {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 0.5em;
	width: 100%;
	padding: 4px;
}

#resistance-checkboxes button {
	background-color: #333;
	border: 1px solid #666;
	padding: 0.3em 0.8em;
	border-radius: 4px;
	cursor: pointer;
	font-size: 0.9em;
	transition: all 0.2s ease;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
	width: 100%;
	color: white;
	position: relative;
}

/* 火按鈕 */
#resistance-checkboxes button[value^="F"] {
	background-color: #cc3700;
	border-color: #cc3700;
	grid-column: 1;
}

/* 毒按鈕 */
#resistance-checkboxes button[value^="S"] {
	background-color: #6a3da8;
	border-color: #6a3da8;
	grid-column: 2;
}

/* 冰按鈕 */
#resistance-checkboxes button[value^="I"] {
	background-color: #4f95b8;
	border-color: #4f95b8;
	grid-column: 3;
}

/* 雷按鈕 */
#resistance-checkboxes button[value^="L"] {
	background-color: #ffa500;
	border-color: #ffa500;
	grid-column: 4;
}

/* 聖按鈕 */
#resistance-checkboxes button[value^="H3"] {
	background-color: #ffd700;
	border-color: #ffd700;
	grid-column: 5;
	color: #333;
}

/* 可治癒按鈕 */
#resistance-checkboxes button[value="HS"] {
	background-color: #2ecc71;
	border-color: #2ecc71;
	grid-column: 6;
}

#resistance-checkboxes button:hover {
	filter: brightness(1.2);
}

#resistance-checkboxes button.selected {
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8);
}

/* 响应式设计 */
@media (max-width: 1200px) {
	#region-checkboxes {
		grid-template-columns: repeat(8, minmax(80px, 1fr));
	}
}

@media (max-width: 992px) {
	.top-bar {
		padding: 1em;
	}
	
	#region-checkboxes {
		grid-template-columns: repeat(6, minmax(80px, 1fr));
	}
	
	.button-controls {
		gap: 0.5em;
	}
	
	.search-filter-controls {
		gap: 0.6em;
	}
	
	.toggle-map-btn,
	.toggle-regions-btn,
	.toggle-resistance-btn {
		padding: 0.4em 0.8em;
		font-size: 0.85em;
	}
}

@media (max-width: 768px) {
	.top-bar {
		padding: 0.8em;
	}
	
	#region-checkboxes {
		grid-template-columns: repeat(4, minmax(80px, 1fr));
	}
	
	.button-controls {
		gap: 0.4em;
	}
	
	.search-filter-controls {
		flex-direction: column;
		align-items: stretch;
		gap: 0.5em;
	}
	
	input[type='text'] {
		width: 100%;
		max-width: 100%;
	}
	
	.monster-card {
		flex-direction: column;
	}
	
	.monster-info-container {
		border-right: none;
		border-bottom: 1px solid #444;
		padding-right: 0;
		padding-bottom: 1em;
	}
	
	.items-outer-container {
		padding-left: 0;
		padding-top: 1em;
	}
	
	.banner-container {
		padding: 0 55px;
		margin-bottom: 8px;
	}
	
	.banner-link {
		margin: 0 16px;
	}
	
	.analytics-container {
		padding: 10px 55px;
	}
	
	.analytics-card {
		padding: 15px 30px;
		min-width: 350px;
	}
	
	.analytics-title {
		font-size: 1.1em;
	}
	
	.analytics-value {
		font-size: 1.8em;
	}
}

@media (max-width: 576px) {
	.top-bar {
		padding: 0.6em;
	}
	
	#region-checkboxes {
		grid-template-columns: repeat(3, minmax(80px, 1fr));
	}
	
	.button-controls {
		gap: 0.3em;
	}
	
	.toggle-map-btn,
	.toggle-regions-btn,
	.toggle-resistance-btn,
	.toggle-all-btn,
	.toggle-default-btn,
	.share-btn,
	#share-btn {
		padding: 0.3em 0.6em;
		font-size: 0.8em;
	}
	
	.level-range-select {
		padding: 0.4em 1.5em 0.4em 0.8em;
		font-size: 0.85em;
		min-width: 100px;
	}
	
	.search-filter-controls {
		gap: 0.4em;
	}
	
	.banner-container {
		padding: 0 40px;
		margin-bottom: 5px;
	}
	
	.banner-link {
		margin: 0 10px;
	}
	
	.analytics-container {
		padding: 8px 40px;
	}
	
	.analytics-card {
		padding: 12px 20px;
		min-width: 300px;
	}
	
	.analytics-title {
		font-size: 1em;
	}
	
	.analytics-data {
		gap: 20px;
	}
	
	.analytics-value {
		font-size: 1.5em;
	}
	
	.toggle-navbar-btn {
		width: 50px;
		height: 60px;
		font-size: 1em;
		margin-top: -20px;
		margin-bottom: 20px;
	}
	
	.toggle-navbar-btn.collapsed {
		height: 40px;
	}
	
	.disclaimer {
		font-size: 0.8em;
		padding: 0.8em;
	}
}