/* Set background color and font color */
header .sticky {
	background-color: #363942;
	color: #E7CEAC;
	position: fixed;
	top: 0;
	width: 100%;
	height: 60px;
	z-index: 1;
	align-items: center;
	display: flex;
	justify-content: space-between;
}

header .sticky .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .sticky .nav-right {
  flex: 1;
  text-align: right;
	padding-right: 25px;
	padding-top: 5px;
}
header .sticky .nav-left {
  flex: 1;
  text-align: left;
	padding-left: 25px;
	padding-top: 5px;
}

header .sticky .nav-mid {
  flex: 2;
  text-align: center;
	padding-top: 5px;
}

/* Style for the login and register links */
header .sticky .nav-right a {
	color: #E7CEAC;
	text-decoration: none;
	padding: 5px;
	display: inline-block;
	margin-left: 10px;
}

/* Add margin to the first link */
header .sticky .nav-right a:first-child {
	margin-left: 0;
}

header .sticky .nav-left a {
	color: #E7CEAC;
	text-decoration: none;
	padding: 5px;
	display: inline-block;
	margin-left: 10px;
}

/* Add margin to the first link */
header .sticky .nav-left a:first-child {
	margin-left: 0;
}

/* Style for the Font Awesome icons */
header .sticky .nav-right a i {
	margin-right: 5px;
}

/* Fix for overlapping content */
body {
	margin-top: 60px; /* adjust this value as needed */
}

#special-btn { 
  background-color: #E7CEAC;
  color: #363942;
  padding: 5px 10px;
	margin-left: 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#special-btn:hover {
  background-color: #E7CEAC;
  color: #363942;
  padding: 5px 10px;
	margin-left: 15px;
  border: none;
  border-radius: 5px
}
