/* ========================================
	GET STARTED PAGE STYLES
	======================================== */

/* ========================================
	1. LAYOUT & WRAPPER
	======================================== */

.get-started-wrapper {
	width: 100%;
	min-height: 100vh;
	padding-bottom: 60px;
}

/* ========================================
	2. HEADER SECTION
	======================================== */

.get-started-wrapper .text-container {
	padding-block: 20px;
}

.get-started-wrapper .text-container p {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
}

/* ========================================
	3. TAB NAVIGATION STYLES
	======================================== */

/* .step-wrapper {
	display: flex;
	flex-direction: row;
	gap: 15px;
	margin-bottom: 40px;
	border-bottom: 2px solid #e9ecef;
	overflow-x: auto;
	padding-bottom: 0;
}

.step.tab {
	padding: 12px 20px;
	border: none;
	background: transparent;
	cursor: pointer;
	font-weight: 500;
	color: #666;
	border-bottom: 3px solid transparent;
	transition: all 0.3s ease;
	white-space: nowrap;
	font-size: 16px;
}

.step.tab:hover {
	color: #333;
	border-bottom-color: #e9ecef;
}

.step.tab.active {
	color: #0066cc;
	border-bottom-color: #0066cc;
	font-weight: 600;
} */

/* ========================================
	4. CONTENT WRAPPER & ANIMATIONS
	======================================== */

.content-wrapper {
	padding: 20px 0;
}

.content-wrapper__content {
	animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ========================================
	5. UTILITY CLASSES
	======================================== */

.d-none {
	display: none !important;
}

.d-block {
	display: block !important;
}

/* ========================================
	6. CONTENT TYPOGRAPHY
	======================================== */

.content-wrapper__content h2 {
	margin-top: 60px;
	margin-bottom: 15px;
	font-size: 22px;
	font-weight: 600;
	color: #333;
}

.content-wrapper__content h2:first-child {
	margin-top: 0;
}

.content-wrapper__content p {
	margin-bottom: 15px;
	color: #666;
	line-height: 1.6;
	font-size: 16px;
}

.content-wrapper__content ol,
.content-wrapper__content ul {
	margin-bottom: 20px;
	padding-left: 20px;
}

.content-wrapper__content li {
	margin-bottom: 10px;
	color: #666;
	line-height: 1.6;
}

.content-wrapper__content a {
	color: #0066cc;
	text-decoration: none;
}

.content-wrapper__content a:hover {
	text-decoration: underline;
}

.title-bold {
	font-weight: 600;
	color: #333;
}

/* ========================================
	7. IMAGES
	======================================== */

.content-wrapper__content img {
	display: block;
	margin: 20px 0;
	width: 100%;
	max-width: 500px;
	height: auto;
	border-radius: 16px;
	border: 1px solid #e9ecef;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ========================================
	8. CODE BLOCKS
	======================================== */

/* .content-wrapper__content code {
	background: #f4f4f4;
	padding: 2px 6px;
	border-radius: 3px;
	color: #d63384;
	font-family: "Courier New", monospace;
	font-size: 14px;
} */

.content-wrapper__content pre {
	background-color: var(--unity-global-color-scale-gray-900);
	color: var(--unity-global-color-scale-gray-100);
	padding: 16px;
	border-radius: 8px;
	overflow-x: auto;
	/* background: #f4f4f4;
	padding: 12px;
	border-radius: 6px;
	border: 1px solid #ddd;
	overflow-x: auto;
	margin: 15px 0; */
}

.content-wrapper__content pre code {
	font-size: 12px;

	/* background: transparent;
	padding: 0;
	color: #333;
	line-height: 1.4; */
}

/* ========================================
	9. BUTTONS
	======================================== */

.get-started-wrapper .btn {
	margin-top: 20px;
	padding: 12px 30px;
	font-weight: 500;
}

/* ========================================
	10. SIDE MENU NAVIGATION
	======================================== */

.side-menu {
	position: sticky;
	top: 90px;
	max-height: calc(100vh - 110px);
	overflow-y: auto;
	padding-right: 20px;
}

.side-menu__nav {
	background: #f8f9fa;
	border-radius: 8px;
	padding: 20px 15px;
}

.side-menu__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.side-menu__list li {
	margin-bottom: 8px;
}

.side-menu__list a {
	display: block;
	padding: 8px 12px;
	color: #666;
	text-decoration: none;
	font-size: 14px;
	border-left: 3px solid transparent;
	transition: all 0.2s ease;
}

.side-menu__list a:hover {
	color: #0066cc;
	background: #fff;
	border-left-color: #e9ecef;
}

.side-menu__list a.active {
	color: #0066cc;
	background: #fff;
	/* border-left-color: #0066cc; */
	font-weight: 600;
}

/* ========================================
	11. MAIN CONTENT LAYOUT
	======================================== */

.main-content {
	padding-left: 30px;
}

/* ========================================
	12. RESPONSIVE DESIGN
	======================================== */

@media (max-width: 768px) {

	/* Hide side menu on mobile */
	.side-menu {
		display: none;
	}

	/* Adjust main content padding */
	.main-content {
		padding-left: 15px;
	}

	/* Tab adjustments */
	/* .step-wrapper {
		gap: 10px;
		margin-bottom: 30px;
	}

	.step.tab {
		padding: 10px 15px;
		font-size: 14px;
	} */

	/* Content adjustments */
	.content-wrapper__content h2 {
		font-size: 20px;
		margin-top: 25px;
	}

	.content-wrapper__content {
		font-size: 15px;
	}

	.content-wrapper__content img {
		max-width: 100%;
	}
}