/* Base Styles */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html,
body {
	height: auto;
	margin: 0;
	padding: 0;

 

}


.headerpee {

	color: rgb(202, 0, 0);
font-weight: bolder;
font-style: italic;
font-size: 18px;


 }

html {
	padding-top: env(safe-area-inset-top);
	scroll-behavior: smooth;
	/* Enable smooth scrolling */

}

/* General padding for mobile to account for the banner */
@media (max-width: 700px) {
	.container {
		margin-top: 200px;
	}
}

/* Add additional safe-area handling for iPhones with notches */
html {
	padding-top: env(safe-area-inset-top);
}

.smart-banner {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
}

body {
	font-family: 'Arial', sans-serif;
	background-color: #f0f0f0;
	color: #333;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Navigation Bar Styling */


.navbar ul {
	list-style: none;
	margin: 0;
	padding: 10px 0px 10px 0px;
	display: flex;
	justify-content: center;
	gap: 20px;
}

.navbar ul li {
	display: inline;
}

.navbar ul li a {
	text-decoration: none;
	color: white;
	font-size: 16px;
	padding: 10px 20px;
	transition: background-color 0.3s ease;
}

#exampleScriptButton {
	padding: 10px 20px;
	font-size: 16px;
	background-color: #007BFF;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	margin-bottom: 20px;
	transition: background-color 0.3s ease;
}

#exampleScriptButton:hover {
	background-color: #0056b3;
}

#exampleScriptButton:active {
	background-color: #004080;
}

.navbar ul li a:hover {
	background-color: #0056b3;
	border-radius: 5px;
}

.logo-description,
.container {
	width: 100%;
	display: block;
	margin: 0 auto;
}

.logo-description {
	text-align: center;
	padding: 20px 0;
	margin-top: 60px;
}

.logo {
	width: 150px;
	margin-bottom: 20px;
}

.description-text {
	font-size: 18px;
	line-height: 1.6;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

.description-text ul {
	list-style-type: disc;
	padding-left: 20px;
	margin-top: 10px;
}

#viewerControls label {
	display: flex;
	font-size: 16px;
	gap: 10px;
}

#viewerControls input[type="color"] {
	width: 40px;
	height: 30px;
	cursor: pointer;
}

/* Ensure the container is pushed down to avoid overlap with the navbar */
.container {}


.navbar {
	background-color: #007BFF;
	padding: 10px 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);


}


.container {
	width: 80%;
	max-width: 1200px;
	text-align: center;
	padding: 20px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	margin-top: 80px;
	/* Adjust based on your navbar height */
}


/* Header */
header h1 {
	font-size: 2.5rem;
	margin-bottom: 10px;
}

header p {
	font-size: 1.1rem;
	color: #777;
	margin-bottom: 30px;
}

/* Teleprompter Display */
#teleprompterDisplay {
	width: 100%;
	height: 300px;
	overflow: hidden;
	background-color: #000;
	color: #fff;
	border: 2px solid #333;
	padding: 20px;
	margin-bottom: 20px;
	border-radius: 8px;
}

#teleprompterText {
	font-size: 36px;
	/* Adjust this value for a larger default font size */
	line-height: 1.5;

	position: relative;
	z-index: 10;
	/* Higher z-index to keep text on top */


}

/* Controls */
.controls {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

button,
input[type="range"] {
	font-size: 16px;
	cursor: pointer;
	border: none;
	border-radius: 5px;
	transition: background 0.3s ease;
}

button {
	background-color: #007BFF;
	color: white;
	padding: 10px 20px;

}

button:hover {
	background-color: #0056b3;
}

input[type="range"] {
	width: 200px;
}

/* Dark Mode Theme */
body.dark-mode {
	background-color: #121212;
	color: #fff;
}

body.dark-mode .container {
	background-color: #1e1e1e;
}

body.dark-mode #teleprompterDisplay {
	background-color: #1c1c1c;
}

body.dark-mode button {
	background-color: #444;
}

#scriptInput {
	width: 100%;
	height: 600px;
	font-size: 18px;
	padding: 10px;
	margin-bottom: 20px;
	border: 1px solid #ddd;
	border-radius: 5px;
}

#teleprompterDisplay {
	width: 100%;
	height: 300px;
	overflow: hidden;
	background-color: #000;
	color: #fff;
	padding: 20px;
	border-radius: 5px;
	position: relative;
}

#teleprompterDisplay.fullscreen {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #000;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	overflow: hidden;
}

#exitFullscreenButton {
	position: fixed;
	top: 20px;
	right: 20px;
	padding: 10px 20px;
	background-color: #ff4b4b;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	z-index: 9999999;
	width: 170px;
}

#teleprompterDisplay.fullscreen #teleprompterText {
	font-size: 86px;
	/* Set your preferred default font size */
	line-height: 1.3;
	/* Adjust as needed */
}


#teleprompterDisplay.fullscreen #exitFullscreenButton {
	display: block;
}

#teleprompterText {
	margin-left: auto;
	margin-right: auto;
	max-width: 60%;
	/* Adjust this value to control how much of the screen width the text occupies */
	text-align: justify;
	/* Optional: Makes the text more balanced */
	line-height: 1.2;
	/* Optional: Improves readability */
}

#viewerControls {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(0, 0, 0, 0.7);
	padding: 10px;
	border-radius: 5px;
	z-index: 10001;
	color: white;
	display: flex;
	gap: 20px;
	align-items: center;


	width: 1380px;
	/* Set the width to 90% of the screen or adjust as needed */
	justify-content: space-around;


}


/* #viewerControls {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 5px;
    color: white;
    max-width: 1000px;
    margin: 0 auto;
} */


/* Play and Pause Buttons */
#playButton,
#pauseButton {
	padding: 10px 20px;
	font-size: 16px;
	background-color: #007BFF;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

#playButton:hover,
#pauseButton:hover {
	background-color: #0056b3;
}

#playButton:active,
#pauseButton:active {
	background-color: #004080;
}


#viewerControls label {
	display: flex;
	align-items: center;
	font-size: 16px;
}

#viewerControls input[type="range"] {
	margin-left: 10px;
	/* cursor: pointer; */
}

.toolbar {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin: 10px 0;
}

.toolbar button {
	font-size: 18px;
	padding: 8px;
	border: 1px solid #007BFF;
	border-radius: 3px;
	background-color: #007BFF;
	color: white;
	cursor: pointer;
	transition: background-color 0.3s ease;
	height: 48px;
}

.toolbar button:hover {
	background-color: #0056b3;
}

.toolbar button:active {
	background-color: #004080;
}

.toolbar button:focus {
	outline: none;
	border-color: #0056b3;
}

#viewerButtons {
	position: fixed;
	bottom: 70px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 20px;
}

#viewerButtons button {
	padding: 10px 20px;
	font-size: 16px;
	cursor: pointer;
	border: none;
	border-radius: 5px;
	background-color: #007BFF;
	color: white;
	transition: background-color 0.3s ease;
}

#viewerButtons button:hover {
	background-color: #0056b3;
}

#viewerButtons button:active {
	background-color: #004080;
}

.additional-content {
	margin-top: 50px;
	padding: 20px;
	background-color: #f9f9f9;
	border-radius: 10px;
	text-align: left;
}

/* Cue Indicator Styling - Fixed position to prevent scrolling with text */
.cue-indicator {
	position: fixed;
	/* Change to fixed so it stays in place */
	width: 100%;
	/* Full width of the viewer */
	background-color: rgb(34, 34, 34);
	/* Cue color */
	top: 50%;
	/* Set to center of the screen */
	left: 0;
	z-index: 1;
	/* Ensure it's behind the text */
	pointer-events: none;
	/* Prevent interaction */
	display: none;
	/* Initially hidden */
	height: 250px;
	/* Default height */
	transform: translateY(-50%);
	/* This moves it up by half its height to center it perfectly */

}

/* Triangle on the left side of the cue */
.cue-indicator::before {
	content: "";
	position: absolute;
	left: 0;
	/* Position it on the left side */
	top: 50%;
	transform: translateY(-50%);
	/* Center the triangle vertically */
	width: 0;
	height: 0;
	border-left: 90px solid red;
	/* The triangle color (same as cue) */
	border-right: 90px solid transparent;
	/* Transparent right side */
	border-top: 60px solid transparent;
	border-bottom: 60px solid transparent;
}


.additional-content h2 {
	color: #007BFF;
	font-size: 24px;
	margin-bottom: 15px;
}

.additional-content p {
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 20px;
}

.additional-content ul {
	list-style-type: disc;
	margin-left: 20px;
}

.additional-content ul li {
	margin-bottom: 10px;
	font-size: 18px;
}

.cue-options {
	position: fixed;
	bottom: 100px;
	right: 20px;
	background-color: rgba(0, 0, 0, 0.8);
	color: white;
	padding: 15px;
	border-radius: 8px;
	z-index:
}

#cueControls {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 10px;
	/* Add some margin to space it under the exit button */
}


#cueOptionsMenu {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 10px;
	background-color: rgba(0, 0, 0, 0.7);
	padding: 10px;
	border-radius: 5px;
	color: white;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
	/* Center it below the cue controls */
}


/* Mobile Optimization */
@media (max-width: 768px) {
	#viewerControls {
		flex-direction: column;
		gap: 20px;


		display: none;
		/* Hidden by default */
		position: fixed;

		left: 50%;
		transform: translateX(-50%);
		background-color: rgba(0, 0, 0, 0.7);
		padding: 10px;
		border-radius: 5px;
		z-index: 10001;
		color: white;
		display: flex;
		gap: 10px;
		align-items: center;
		justify-content: center;


	}


	/* Mobile view - hide all except Play and Pause buttons */
	/* Mobile view - hide all except Play and Pause buttons */
	@media (max-width: 768px) {

		/* Hide everything except Play and Pause */
		#viewerControls label,
		/* Hide labels */
		#cueControls,
		/* Hide cue controls */
		#mirrorTextButton,
		/* Hide the mirror text button */
		#fontSizeControlViewer,
		/* Hide the font size control */
		#speedControlViewer,
		/* Hide speed control */
		#toggleCueButton,
		/* Hide cue toggle */
		#toggleCueOptionsButton,
		/* Hide cue options */
		#alignButtons {
			/* Hide alignment buttons */
		}


		/* Mobile view adjustments for teleprompter viewer */
		@media (max-width: 768px) {
			#teleprompterText {
				line-height: 0.5;
				/* Reduce line-height for mobile for tighter spacing */
			}
		}


		/* Ensure the toolbar only contains the Play and Pause buttons */
		#viewerControls {
			display: flex;
			justify-content: center;
			/* Center Play and Pause buttons */
			align-items: center;
			padding: 10px;
			background-color: rgba(0, 0, 0, 0.8);
			position: fixed;
			bottom: 0;
			width: 100%;
			z-index: 10001;
		}

		/* Style for Play and Pause buttons */
		#viewerControls #playButton,
		#viewerControls #pauseButton {
			padding: 10px 20px;
			font-size: 16px;
			margin: 0 10px;
			background-color: #007BFF;
			color: white;
			border: none;
			border-radius: 5px;
		}

		#viewerControls #playButton:hover,
		#viewerControls #pauseButton:hover {
			background-color: #0056b3;
		}
	}

	/* Ensure sliders and buttons are responsive */
	#viewerControls label {
		font-size: 14px;
		width: 100%;
		/* Ensure elements take up full width */
		display: flex;
		justify-content: space-between;
		/* Align label and input properly */
	}

	#viewerControls input[type="range"],
	#viewerControls input[type="color"] {
		width: 100%;
		max-width: 200px;
		/* Limit width to ensure better fit on mobile */
	}

	#playButton,
	#pauseButton,
	#restartButton {
		width: 100%;
		/* Full width on mobile */
		padding: 12px;
		font-size: 14px;
	}

	#toggleCueButton,
	#toggleCueOptionsButton {
		width: 100%;
		/* Full width on mobile */
		padding: 12px;
		font-size: 14px;
	}
}

/* Extra small screen optimization (for very small devices) */
@media (max-width: 500px) {
	#viewerControls {
		flex-direction: column;
		gap: 15px;
	}

	/* Smaller text and sliders for smaller screens */
	#viewerControls label {
		font-size: 12px;
	}

	#viewerControls input[type="range"] {
		width: 100%;
		max-width: 150px;
		/* Even smaller max width */
	}

	/* Reduce padding and font size for buttons */
	#playButton,
	#pauseButton,
	#toggleCueButton,
	#toggleCueOptionsButton {
		width: 100%;
		padding: 10px;
		font-size: 12px;
	}
}


#textAlignmentControls {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 40px;
	z-index: 999999;
	position: fixed;
	top: 20px;
	right: 0px;
	padding: 10px 20px;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;


}

#viewerMirrorButton {

	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 40px;
	z-index: 99999;
	/* Ensure they are on top */

	position: fixed;
	top: 20px;
	right: 0px;
	padding: 70px 20px;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;


}


#textAlignmentControls button {
	padding: 8px;
	font-size: 18px;
	border: 1px solid #007BFF;
	border-radius: 3px;
	background-color: #007BFF;
	color: white;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

#textAlignmentControls button:hover {
	background-color: #0056b3;
}

#textAlignmentControls button:active {
	background-color: #004080;
}


/* Margin Controls Styling */
#marginControls {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 120px;
	z-index: 99999;
	/* Ensure they are on top */

	position: fixed;
	top: 20px;
	right: 0px;
	padding: 10px 20px;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;

}

#marginControls label {
	font-size: 16px;
	display: flex;
	align-items: center;
	gap: 10px;
}

#marginControls input[type="range"] {
	width: 100px;
	cursor: pointer;
}


/* Development Notice Section */
.development-notice {
	text-align: center;
	margin: 20px 0;
	padding: 10px;
	background-color: #f9f9f9;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.development-notice p {
	font-size: 18px;
	margin-bottom: 15px;
}

.email-button {
	display: inline-block;
	padding: 10px 20px;
	font-size: 16px;
	background-color: #007BFF;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	transition: background-color 0.3s ease;
}

.email-button:hover {
	background-color: #0056b3;
}

.email-button:active {
	background-color: #004080;
}


/* Provenance Section Styling */
.provenance-section {
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin-bottom: 50px;
	text-align: left;
	padding-left: 40px;

}

.provenance-text {
	width: 60%;
	font-size: 18px;
	line-height: 1.6;
}


.provenance-text h2 {
	font-size: 24px;
	color: #007BFF;
	margin-bottom: 15px;
}

.provenance-image {
	width: 30%;
}

.provenance-image img {
	width: 100%;
	border-radius: 10px;
	/* Rounded corners */
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	/* Slight shadow for depth */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
	.provenance-section {
		flex-direction: column;
		text-align: left;
	}

	.provenance-text {
		width: 100%;
		margin-bottom: 20px;
	}

	.provenance-image {
		width: 50%;
	}
}


/* Full screen teleprompter display for mobile */
@media (max-width: 768px) {
	#teleprompterDisplay.fullscreen {
		width: 100vw;
		height: 100vh;
		position: fixed;
		top: 0;
		left: 0;
		background-color: #000;
		z-index: 9999;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 20px;
		overflow: hidden;
		overflow-y: auto;
		/* Enable vertical scrolling */
		overflow-x: hidden;
		/* Hide horizontal scrolling to avoid sideways movement */

	}

	/* Ensure the text is centered and takes up full width on mobile */
	#teleprompterText {
		max-width: 100%;
		/* No margins on mobile */
		margin-left: 0;
		margin-right: 0;
	}

	/* Adjust any additional elements like the cue indicator */
	.cue-indicator {
		top: 50%;
		width: 100%;
		/* Full width */
		transform: translateY(-50%);
	}
}


/* Start Prompter Button */
#startPrompterButton {
	padding: 20px 40px;
	/* Increase padding to make it taller */
	font-size: 18px;
	/* Optional: Adjust font size if needed */
	height: auto;
	/* Optional: Set auto height if you rely solely on padding */
	background-color: #007BFF;
	/* Ensure the background is styled */
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

/* Optional hover effect */
#startPrompterButton:hover {
	background-color: #0056b3;
}


/* Base styles for dark mode */
body.dark-mode {
	background-color: #121212;
	/* Dark background */
	color: #ffffff;
	/* Light text for dark background */
}

/* Adjust text color for specific sections in dark mode */
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode p,
body.dark-mode ul,
body.dark-mode li,
body.dark-mode label {
	color: #ffffff;
	/* Ensure all text elements switch to white */
}

/* Adjust buttons and inputs */
body.dark-mode button,
body.dark-mode input[type="range"],
body.dark-mode input[type="text"],
body.dark-mode textarea {
	background-color: #333;
	/* Dark background for buttons and inputs */
	color: #fff;
	/* Light text */
	border: 1px solid #555;
	/* Border to distinguish elements */
}

/* Example for navbar or additional content */
/* body.dark-mode .navbar, */
body.dark-mode .additional-content {
	background-color: #333;
	/* Darken these areas too */
	color: #ffffff;
}

/* Dark mode for any additional sections */
body.dark-mode .container {
	background-color: #1e1e1e;
	/* Darken containers */
}

/* Dark mode links hover */
body.dark-mode a {
	color: #007bff;
	/* Make links stand out in dark mode */
}

/* Dark mode for the development notice section */
body.dark-mode .development-notice {
	background-color: #1e1e1e;
	/* Darken the background for this section */
	color: #ffffff;
	/* Light text to make it readable */
	padding: 20px;
	border-radius: 8px;
	/* Optional: Add some styling for smoothness */
}

body.dark-mode .email-button {
	background-color: #007BFF;
	/* Blue background for the button */
	color: #ffffff;
	/* White text */
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	text-decoration: none;
	display: inline-block;
	transition: background-color 0.3s ease;
}

/* Hover effect for the email button in dark mode */
body.dark-mode .email-button:hover {
	background-color: #0056b3;
	/* Darken the button on hover */
}


/* Style for the Dark Mode Toggle Container */
.dark-mode-toggle {
	display: flex;
	align-items: center;
	/* Align label and switch horizontally */
	gap: 10px;
	/* Add space between the label and the switch */
	font-size: 16px;
	/* Adjust font size for the label */
}

/* The switch - container */
.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}

/* Hide the default checkbox */
.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

/* The slider */
.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: .4s;
	border-radius: 34px;
	/* Rounded edges */
}

/* Slider before being clicked */
.slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	transition: .4s;
	border-radius: 50%;
	/* Circle knob */
}

/* When the checkbox is checked */
input:checked+.slider {
	background-color: #007BFF;
	/* Slider background in dark mode */
}

/* Move the knob when checked */
input:checked+.slider:before {
	transform: translateX(26px);
	/* Move knob to the right */
}

/* Dark mode */
body.dark-mode .slider {
	background-color: #007BFF;
}


/* Hide specific links on mobile screens */
@media (max-width: 768px) {
	.hide-on-mobile {
		display: none;
	}
}

@media (max-width: 400px) {
	.hide-on-supersmall {
		display: none;
	}
}


#importScriptButton {

	margin-bottom: 18px;

}

@media (max-width: 700px) {

	button {

		display: block;
		width: 100%;
	}
}

#toggleTool {


	z-index: 999999999;

}


footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    margin: 20px;
}

.footer-section h2 {
    color: #007BFF;
    margin-bottom: 15px;
    font-size: 20px;
text-align: left;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
    text-align: left;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #007BFF;
}

.footer-section form {
    display: flex;
    align-items: left;
}

.footer-section input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
    flex: 1;
}

.footer-section button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.footer-section button:hover {
    background-color: #0056b3;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #555;
    margin-top: 20px;
}

.footer-bottom a {
    color: #007BFF;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #0056b3;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        margin: 10px 0;
    }
}



.user-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.user-guide h1, .user-guide h2 {
    color: #007BFF;
}

.user-guide ul {
    margin-left: 20px;
    list-style-type: disc;
}

kbd {
    background-color: #eee;
    border-radius: 3px;
    padding: 3px 5px;
    font-size: 0.9em;
    border: 1px solid #ccc;
}



