body {
	background: rgb(50, 0, 108);
	font-family: "Roboto", sans-serif;
	margin: 0, auto;
}
#babyProgression {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 100%;
	width: 100%;
	max-width: 100%;
	max-height: calc(100% - 250px);
	min-height: 100px;
}
.maskLine {
	transition: d 310ms;
}
.maskLine:nth-of-type(2) {
	transition: d 300ms;
}
.controls {
	position: absolute;
	top: 50%;
	left: 15px;
	transform: translate(0%, -50%);
	height: calc(100vh - 6em);
	max-height: 600px;
}
.slider {
	position: absolute;
	display: block;
	top: 50%;
	right: 15px;
	transform: translate(0%, -50%);
	width: 50px;
	height: calc(100vh - 6em);
	max-height: 600px;
}
#scaleSlider {
	position: absolute;
	width: calc(100vh - 6em);
	max-width: 600px;
	cursor: pointer;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-90deg);
}
.container {
	display: flex;
	flex-direction: column;
	width: 45px;
	justify-content: space-between;
	height: 100%;
}

.container > button {
	cursor: pointer;
	color: rgba(255, 255, 255, 0.5);
	background: none;
	border: 1px solid rgba(255, 255, 255, 0.5);
	flex: 1;
	margin: 0px;
	padding-top: 4px;
	padding-bottom: 4px;
	padding-left: 0px;
	padding-right: 0px;
	font-family: "Roboto", sans-serif;
	font-weight: bold;
}
.container > button:hover,
.container > button:focus,
.container > button:active {
	border: 1px solid #fff;
	color: #fff;
}
.container > button > span {
	font-weight: 100;
	font-size: 0.8em;
}
.daysSection {
	text-align: center;
	font-family: "Roboto", sans-serif;
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translate(-50%);
	color: rgba(255, 255, 255, 0.8);
}
.days {
	font-size: 1.5em;
	font-weight: 600;
}
.dateSection {
	text-align: center;
	font-family: "Roboto", sans-serif;
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translate(-50%);
	color: rgba(255, 255, 255, 0.8);
}
input[type="range"] {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	cursor: pointer;
	outline: none;
	overflow: hidden;
	border-radius: 25px;
}

/* Track: webkit browsers */
input[type="range"]::-webkit-slider-runnable-track {
	height: 25px;
	background: rgb(50, 0, 108);
	border-radius: 25px;
}

/* Track: Mozilla Firefox */
input[type="range"]::-moz-range-track {
	height: 25px;
	background: rgb(50, 0, 108);
	border-radius: 25px;
}

/* Thumb: webkit */
input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	height: 25px;
	width: 25px;
	background-color: #a020f0;
	border-radius: 50%;
	border: 1px solid #a020f0;
	box-shadow: -407px 0 0 400px rgb(100, 0, 180);
}

/* Thumb: Firefox */
input[type="range"]::-moz-range-thumb {
	height: 25px;
	width: 25px;
	background-color: #a020f0;
	border-radius: 50%;
	border: 1px solid #a020f0;
	box-shadow: -407px 0 0 400px rgb(100, 0, 180);
}
/* Styling the top bar */
.top-bar {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 10px; /* Add space for the fixed $AiFlock bar */
	padding: 20px;
	z-index: 55222235423;
  }
  
  /* Styling the labels (AiFlock and CA) */
  .top-bar label {
	font-size: 36px;
	font-family: 'Press Start 2P', cursive;
	font-weight: bold;
	color: #00ff99;
	text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
	margin: 10px 0;
	animation: fadeIn 2s ease-out;
	
  }
  
  /* Styling the input and button section */
  .copy-section {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
	animation: scaleIn 1.5s ease-out;
	padding: 15px;
	border-radius: 15px;
	z-index: 55222235423;
  
  }
  
  /* Scale-in animation for the copy section */
  @keyframes scaleIn {
	0% {
	  transform: scale(0.8);
	  opacity: 0;
	}
	100% {
	  transform: scale(1);
	  opacity: 1;
	}
  }
  
  /* Styling the input field */
  .copy-section input {
	font-size: 20px;
	font-family: 'Press Start 2P', cursive;
	padding: 12px 20px;
	margin-right: 15px;
	width: 250px;
	border-radius: 10px;
	outline: none;
	text-align: center;
	background-color: #1e1e1e;
	color: #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
	transition: all 0.3s ease;
  }
  
  /* Input hover effect */
  .copy-section input:hover {
	background-color: #333;
	border-color: #ff0066;
  }
  
  /* Styling the copy button */
  .copy-btn {
	cursor: pointer;
	padding: 12px 25px;
	background-color: #00ff99;
	color: white;
	border: none;
	border-radius: 10px;
	font-size: 18px;
	font-family: 'Press Start 2P', cursive;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
	transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  /* Copy button hover effect */
  .copy-btn:hover {
	background-color: #ff0066;
	transform: translateY(-4px);
	box-shadow: 0 7px 20px rgba(0, 0, 0, 0.5);
  }
  
  /* Social Icons Section Styling */
  .social-icons {
	position: fixed;
	left: 90px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 20;
  }
  
  .social-icon {
	margin: 15px 0;
	transition: transform 0.3s ease, filter 0.3s ease;
  }
  
  .social-icon:hover {
	transform: scale(1.2);
	filter: brightness(1.2);
  }
  
  .icon-image {
	width: 50px;
	height: 50px;
	object-fit: contain;
	transition: opacity 0.3s ease;
  }
  
  .icon-image:hover {
	opacity: 0.8;
  }