/* Guide-specific styles */
.guide-container {
	display: flex;
	min-height: calc(100vh - 80px);
	margin-top: 80px;
	background: white;
}

.guide-sidebar {
	background: #f8f9fa;
	color: #374151;
	width: 280px;
	flex-shrink: 0;
	border-right: 1px solid #e5e7eb;
	overflow-y: auto;
	position: sticky;
	top: 80px;
	height: calc(100vh - 80px);
}

.sidebar-section {
	border-bottom: 1px solid #e5e7eb;
	padding: 1rem 0;
}

.sidebar-section:last-child {
	border-bottom: none;
}

.sidebar-title {
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.75rem;
	color: #374151;
	margin-bottom: 0.5rem;
	padding: 0 1rem;
}

.sidebar-link {
	display: block;
	padding: 0.5rem 1rem;
	color: #374151;
	text-decoration: none;
	transition: all 0.2s;
	border-radius: 0.375rem;
	margin: 0.125rem 0.5rem;
}

.sidebar-link:hover {
	background: #e5e7eb;
	color: #1f2937;
}

.sidebar-link.active {
	background: white;
	color: #10b981;
	font-weight: 600;
}

.guide-content {
	flex: 1;
	padding: 2rem;
	max-width: 1200px;
	margin: 0;
	padding-left: 3rem;
	padding-right: 3rem;
	background: white;
}

.content-section {
	margin-bottom: 3rem;
}

.content-section h2 {
	font-size: 1.875rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: #10b981;
	padding-top: 3rem;
	margin-top: -3rem;
	border-bottom: 2px solid #e5e7eb;
	padding-bottom: 0.5rem;
}

.content-section h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin: 2.5rem 0 1rem 0;
	color: #10b981;
	padding-top: 2.5rem;
	margin-top: -2.5rem;
}

.content-section h4 {
	font-size: 1.25rem;
	font-weight: 600;
	margin: 2rem 0 0.75rem 0;
	color: #10b981;
	padding-top: 2rem;
	margin-top: -2rem;
}

.content-section p {
	margin-bottom: 1rem;
	line-height: 1.7;
}

.content-section ul, .content-section ol {
	margin-bottom: 1rem;
	padding-left: 1.5rem;
}

.content-section li {
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

.content-section code {
	background: #f3f4f6;
	border: 1px solid #e5e7eb;
	border-radius: 0.25rem;
	padding: 0.125rem 0.25rem;
	font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
	font-size: 0.875rem;
	color: #dc2626;
}

.content-section blockquote {
	border-left: 4px solid #1e40af;
	padding-left: 1rem;
	margin: 1.5rem 0;
	font-style: italic;
	color: #6b7280;
}

.screenshot-container {
	margin: 1.5rem 0;
	text-align: center;
}

.guide-screenshot {
	max-width: 100%;
	width: 600px;
	height: auto;
	border: 1px solid #e5e7eb;
	border-radius: 0.5rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	transition: transform 0.2s ease-in-out;
}

.guide-screenshot:hover {
	transform: scale(1.02);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.screenshot-container img {
	display: block;
	margin: 0 auto;
}

.intro1 ul {
	list-style: none;
	padding: 0;
}

.intro1 li {
	margin-bottom: 0.5rem;
	padding: 0.5rem;
	background: #f8f9fa;
	border-radius: 0.375rem;
}

.intro2 {
	background: #fff3cd;
	border: 1px solid #ffeaa7;
	border-radius: 0.5rem;
	padding: 1rem;
	margin: 1rem 0;
}

.intro2 p {
	margin: 0;
	color: #856404;
}

.info-box {
	background: #ecfdf5;
	border: 1px solid #a7f3d0;
	border-radius: 0.5rem;
	padding: 1rem;
	margin: 1.5rem 0;
}

.info-box-title {
	font-weight: 700;
	text-transform: uppercase;
	color: #065f46;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

/* Responsive design */
@media (max-width: 768px) {
	.guide-container {
		flex-direction: column;
	}
	
	.guide-sidebar {
		width: 100%;
		position: static;
		height: auto;
		max-height: 300px;
	}
	
	.guide-content {
		padding: 1rem;
	}
	
	.guide-screenshot {
		width: 100%;
		max-width: 400px;
	}
}