:root {
	--bs-linked-blue:#0077B5;
	--bs-dark-blue:#005983
	--bs-Light-blue:#00A0DC
}

html {
	background:transparent; 
	zoom:100%;
}

body{
	line-height:18px;
	overflow-x: hidden;
	background-color:var(--bs-white);
	height:100%;
	width:100%;
	font-size: 100%; 
	font-family: "open-sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	-webkit-font-smoothing:antialiased;
	-webkit-transition:opacity 0.3s, -webkit-transform 0.3s;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
	transition:opacity 0.3s, transform 0.3s;
   	transition:background-color .1s;
	-moz-transition:background-color .1s linear;
	-webkit-transition:background-color .1s linear;
}

/*
 * Fix browser defanavt design
 */

html, body, div, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, acronym, address, big, cite, code,
del, dfn, font, img, ins, kbd, q, s, samp, tt, var, center,
dl, dt, dd, ol, nav, ul, li,
fieldset, form, label, legend, input, button, textarea, select,
table, caption, tbody, tfoot, thead, tr, th, td{
	margin:0;
	padding:0;
	border:0;
	outline:0;
	list-style:none;
}

*:focus {
  outline:0 !important;
}

a,
button{
  	color:inherit;
  	text-decoration:none;
  	cursor:pointer;
  	outline:0;
	transition:0.3s;
	-webkit-transition:0.3s;
	-moz-transition:0.3s;
	-ms-transition:0.3s;
	background: transparent;
}

button:active,
a.btn:active{
	border:1px solid var(--bs-purple-5) !important;
	color: var(--bs-purple-5) !important;
	background: transparent !important;
}

a,
a:focus {
	color: var(--bs-purple-5);
	text-decoration:none; 
}

a:hover{
	color:rgba(168,168,168,1.00);
}

.new-hero{
	font-family: "new-hero", sans-serif;
	font-weight: 800;
	font-style: normal;
}

.open-stans-extra-bold{
	font-family: "open-sans", sans-serif;
	font-weight: 800;
	font-style: normal;
}

.bg-linked-blue{
	background-color: var(--bs-linked-blue);
}

.rotate-left {
  transform: rotate(-8deg);
}

.rotate-right {
  transform: rotate(6deg);
}

.step-container {
	position: relative;
	width: 100%;
	height: 100px;
	margin: 2rem auto;
}

.step-container hr {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	border: none;
	height: 2px;
	background-color:var(--bs-gray-700);
	z-index: 1;
	margin-top: 0rem;
}

.circle {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: #0077b5;
	color: white;
	font-weight: bold;
	font-family: sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.btn-linkedin{
	background-color: var(--bs-dark-blue);
}

.btn-linkedin:hover{
	background-color: var(--bs-light-blue);
}

/* Main editable container */
.editable-scrollable {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  padding: 1.5rem;
  border-radius: 10px;
  max-height: 300px;
  overflow-y: auto;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 16px;
  color: #222;
  line-height: 1.6;
}

/* Custom UL class for prompt-style formatting */
.prompt-ul {
  list-style-type: disc;
}

/* Nested UL */
.prompt-ul ul {
  list-style-type: circle;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

/* List items */
.prompt-ul li {
  margin-bottom: 0.75rem;
}

/* Custom marker style */
.prompt-ul li::marker {
  color: #0077b5; /* LinkedIn blue */
}