/* Basic styling for the header controls link */
.hl_header--controls {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hl_header--controls li {
  display: inline-block;
  margin-right: 10px;
}

#leadli-open-sidebar {
  text-decoration: none;
  background-color: #155EEF;
  color: white;
  cursor: pointer;
}

/* Sidebar styles */
.leadli-quickview {
  position: fixed;
  top: 0;
  right: 0;
  width: 450px;
  height: 100%;
  background-color: #f8f9fa;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  margin-top:50px;
  z-index: 100;
}
.leadli-quickview-header h2 {
	margin-bottom: 8px;
}
.leadli-quickview-content {
  padding: 20px;
  height: 100%; /* Ensures it takes up the full height of the sidebar */
  overflow-y: auto; /* Enables vertical scrolling if content overflows */
  box-sizing: border-box; /* Includes padding in the height calculation */
}

.leadli-quickview-content h2 {
  margin-top: 0;
}

.leadli-quickview.hidden {
  transform: translateX(100%);
}

.leadli-quickview.visible {
  transform: translateX(0);
}

/* Close button styling */
#leadli-close-sidebar {
  display: block;
  margin-top: 10px;
  margin-right: 10px;
  padding: 10px 14px;
  background-color: grey;
  color: white;
  border: none;
  cursor: pointer;
  float: right;
  border-radius: 100%;
}
.leadli-quickview-content-item {
	margin-top: 24px;
	margin-left: 12px;
	border-bottom: solid 1px darkblue;
	padding: 24px 6px;
}
.leadli-content-item-head {
	font-size: 1.4em;
	font-weight: bold;
	color: darkblue;
	margin-bottom: 8px;
}
.leadli-content-item-body {
	color: #1a1a1a;
}
.leadli-content-type-free {
	float: right;
	background-color: green;
	padding: 6px;
	border-radius:12px;
	color: white;
	font-size: 0.8em;
}
.leadli-content-type-paid {
	float: right;
	background-color: lightyellow;
	padding: 6px;
	border-radius:12px;
	color: #1a1a1a;
	font-size: 0.8em;
}

.leadli-quickview-content-item i {
	color: lightgrey;
	font-size: 2em;
	float: left;
	margin-right: 8px;
}