/* Import Google Fonts - using display=fallback to prevent visual font jumping (FOUT) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Merriweather:wght@400;700&display=fallback');

/* Base body font: easy-to-read serif */
body {
	font-family: 'Merriweather', Georgia, serif;
	font-size: 1rem;
	/* Bootstrap default = 16px */
	line-height: 2;
	/* a bit more breathing room */
	color: #212529;
	/* Bootstrap default body color */
	background-color: #fff;
	/* keep it clean */
}

/* Headings: modern sans-serif */
h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-weight: 600;
	line-height: 1.25;
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
}

/* Lead paragraphs */
.lead {
	font-size: 1.25rem;
	font-weight: 400;
	color: #343a40;
}

/* Muted / secondary text */
.text-muted {
	color: #6c757d !important;
	font-style: italic;
}

/* Optional: improve link readability */
a {
	color: #0d6efd;
	/* Bootstrap primary */
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}


.container {
	max-width: 1200px;
}

@media (max-width: 991.98px) {
	.container {
		max-width: 100% !important;
	}
}

.sidebar_widget {
	margin-bottom: 15px;
}

#dual-navbar-wrapper {
	margin-top: 25px;
}

.top_banner {
	background-color: #eeeeee;
	font-size: 30px;
	font-weight: 100;
	text-align: center;
	padding: 15px;
	margin-bottom: 15px;
}

#global-navbar .nav-item {
	margin-left: 0px;
}

#global-navbar .nav-link {
	padding-left: 5px;
	padding-right: 5px;
}


.main_content p {
	max-width: 900px;
	margin: 0 auto;
	line-height: 1.375;
	font-size: 1.25rem;
	font-weight: 250;
	margin-top: 25px;
	margin-bottom: 25px;
}

.main_content .lead {
	font-size: 2rem;
}

.main_content img {
	margin-bottom: 50px;
}

.oversized_box {
	width: 100vw;
	position: relative;
	left: calc(-50vw + 50%);

	height: auto;
	border: 3px solid red;
	background-color: lightgrey;
}

.main_content img {
	max-width: 100%;
}

.fullwidth_extrawide {
	max-width: 1680px;
}

.content_image {
	width: 100%;
	height: auto;
}

.menu-dropdown-language-selector {
	width: 24px;
	height: auto;
}

.navbar-logo {
	width: 40px;
	height: auto;
}

.navbar-page-name {
	font-size: 32px;
	font-weight: 100;
}


.kcmdb-subtitle-table-wrapper {
	max-height: 400px;
	max-width: 100%;
	overflow: auto;
	display: inline-block;
}

.subtitle-table {
	background: #F3F5F6;
}

.link-in-bio-social-icon {
	width: 32px;
	margin-right: 12px;
}

#global-navbar {
	font-size: 11px;
	padding: 0px;
	margin-top: -20px;
	margin-bottom: 0px;
}

#global-navbar .nav-link.active {
	background-color: #212529 !important;
	color: #ffffff !important;
	border-radius: 10px 10px 0 0;
}

.file-explorer-icon {
	width: 16px;
	height: 16px;
}

.fm-menu .icon {
	width: 20px;
	height: 20px;
	vertical-align: middle;
	margin-right: 5px;
}

.indent-level-0 {
	margin-left: 0;
}

.indent-level-1 {
	margin-left: 10px;
}

.indent-level-2 {
	margin-left: 20px;
}

.indent-level-3 {
	margin-left: 30px;
}

.indent-level-4 {
	margin-left: 40px;
}

.indent-level-5 {
	margin-left: 50px;
}

.indent-level-6 {
	margin-left: 60px;
}

.indent-level-7 {
	margin-left: 70px;
}

.indent-level-8 {
	margin-left: 80px;
}

.indent-level-9 {
	margin-left: 90px;
}

.indent-level-10 {
	margin-left: 100px;
}

/* Flexbox for aligning file names and dates */
.file-entry {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px 0;
}

.file-name {
	flex: 1;
	/* File name takes up available space */
}

.date {
	color: #888;
	margin-left: 10px;
	white-space: nowrap;
	/* Prevent wrapping */
}

.recent-files-widget {
	padding: 10px;
}

.recent-file {
	margin-bottom: 10px;
}

.file-name {
	font-weight: normal;
}

.file-path {
	font-size: 0.8em;
	color: #aaa;
}

/* JSON2HTML tree view */

.tree-item {
	position: relative;
	padding-left: 20px;
}

.tree-item:before {
	content: '';
	position: absolute;
	left: -10px;
	top: 0;
	bottom: 0;
	width: 1px;
	background: #ccc;
}

.tree-item:after {
	content: '';
	position: absolute;
	left: -20px;
	top: 10px;
	width: 20px;
	height: 1px;
	background: #ccc;
}

.tree-item:first-child:before {
	display: none;
}

.card-header {
	padding-left: 10px !important;
}

/* analitycs */

.marker {
	height: 1px;
	visibility: hidden;
}

/* Prevent layout breakage from long strings (e.g., long URLs) */
.main_content,
.main_content p,
.main_content a,
.sidebar_widget,
.offcanvas-body {
	overflow-wrap: anywhere;
	word-break: break-word;
}

pre,
code {
	white-space: pre-wrap;
	word-break: break-word;
}