/*

* Override Pages default styles or create your own styles here

*/
.jumbotron h1.large-demo-text{
	font-size: 150px;
}

.icon-text-search{
	font-size: 42px;
	width: 150%;
}

.persona-container {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 20px;
}
.persona-box {
  flex: 1;
  border: 2px solid #dcdde0;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: white;
}
.persona-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.persona-box i {
  font-size: 24px;
  color: #dcdde0;
  margin-bottom: 10px;
}
.persona-box h4 {
  margin: 0;
  /* color: #626262; */
  font-size: 14px;
}
.persona-box.active {
  /* background-color: #007be8; */
  /* color: white; */
  border: 2px solid #007be8;
}
.persona-box.active i {
  /* color: white; */
}

.table.table-condensed.table-detailed > tbody > tr > td.remove-caret:first-child:before {
  content: "\e98d8";
  display: inline-block;
  font-size: 16px;
  top: -1px;
  position: relative;
  margin-right: 8px;
  font-family: "pages-icon";
  -webkit-transition: all 0.12s linear;
  transition: all 0.12s linear;
}

.table.table-condensed.table-detailed > tbody > tr > td.remove-caret:first-child:hover {
  background: #ffffffff;
  cursor: default;
}

.remove-caret{
  content: "\e98d8" !important;
  
}

.no-hover-table tbody tr:hover {
  background-color: transparent !important;
}

table.dataTable tbody{
  background-color: #f5f5f5 !important;
}

table.table-hover tbody tr:hover {
  background-color: transparent !important;
}

table.dataTable tbody tr:hover {
  background-color: transparent !important;
}

/* Or set a custom hover color */
table.dataTable tbody tr:hover {
  background-color: #f5f5f5 !important; /* Light gray - use any color you want */
}

.cs-helper{
  margin-top:10px !important;
  margin-bottom: 10px !important;
  padding: 7px !important;
  height: 35px !important;
}

.ui-autocomplete {
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 99999 !important;
  background: white !important;
  border: 1px solid #ccc !important;
  position: fixed !important;
  width: auto !important;
  min-width: 300px !important;
}
.ui-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  outline: 0;
}
.ui-menu-item {
  margin: 0;
  padding: 8px 12px;
  cursor: pointer;
  position: relative;
  list-style-type: none;
  display: block;
}
.ui-menu-item:hover {
  background: #f0f0f0;
}
.ui-helper-hidden-accessible {
  display: none;
}


.esig-controls {
  padding: 15px 0px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}
.esig-color-options {
  display: flex;
  gap: 8px;
  margin-left: auto;
}
.esig-color-option {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
  box-shadow: 0 0 0 1px #ccc;
}
.esig-color-option.active {
  box-shadow: 0 0 0 2px #333;
}
.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    height: 100%;
    width: 2px;
    background: #f0f0f0;
}