body{
background-color: #f0f2f7;
}
/* search bar */
.wrapper {
    width: 100%;
    max-width: 45.25rem;
  }
  
  .label {
    font-size: .625rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: +1.3px;
    margin-bottom: 1rem;
  }
  
  .searchBar {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  
  .search-box {
    width: 100%;
    height: 2.8rem;
    background: #f5f5f5;
    outline: none;
    border: none;
    border-radius: 1.625rem;
    padding: 0 3.5rem 0 1.5rem;
    font-size: 1rem;
  }
  #searchQueryInput {
    width: 100%;
    height: 2.8rem;
    background: #f5f5f5;
    outline: none;
    border: none;
    border-radius: 1.625rem;
    padding: 0 3.5rem 0 1.5rem;
    font-size: 1rem;
  }
  .list-border{
    border: 1px solid #ddd;
    margin-top: -1px; /* Prevent double borders */
    background-color: #f6f6f6;
    padding: 12px;
    text-decoration: none;
    /* font-size: 18px; */
    color: black;
    display: block
  }
  .ul-search{
    list-style-type: none;
    margin: 0px;
    margin-top: -1px;
    padding: 12px;
    text-decoration: none;
    color: black;
    display: block;
    
  }
  
  #searchQuerySubmit {
    width: 3.5rem;
    height: 2.8rem;
    margin-left: -3.5rem;
    background: none;
    border: none;
    outline: none;
  }
  
  #searchQuerySubmit:hover {
    cursor: pointer;
  }
  /* card hover */
  .animated-card {
    transition: transform 0.3s ease-in-out;
}

.animated-card:hover {
    transform: translateY(-5px); /* Adjust the value for the desired upward movement */
    cursor: pointer;
}
/* hover */
.card2 {
    overflow: hidden;
  }
  .card2:hover {
    transition: all 0.2s ease-out;
    box-shadow: 0px 4px 8px rgba(38, 38, 38, 0.2);
    top: -4px;
    border: 1px solid #cccccc;
    background-color: white;
  }

  .card2:hover:before {
    transform: scale(2.15);
  }
  .image-link {
    display: inline-block;
    width: 100px; /* Set the width of the link */
    height: 50px; /* Set the height of the link */
    background-image: url('../right-arrow.html'); /* Specify the image URL */
    background-size: cover; /* Adjust the background size as needed */
    text-decoration: none; /* Remove default underline for links */
    color: transparent; /* Make the text color transparent */
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .example {
    font-size: 30px !important;
    /* margin: 12px; */
    margin: 0 !important;
}
}
/* dashboard */
.question{
  padding: 10px 20px;
  background-color: #fff;
	border: 1px solid #cfcfcf;
	border-radius: 8px;
	color: #000;
	width: 100%;
	margin-bottom: 15px;
	font-size: 18px;
	line-height: 24px;
  text-decoration: none;
}
.question:hover{
  color: #2196f3 !important;
	margin-top: -2px;
	box-shadow: 0 12px 20px -14px #000;
}
a.flite:hover{
  color:#0a58ca!important;
}
/* question dashboard */
.portion{
  font-size: 17px;
  line-height: 1.4em;
  font-weight: 600;
}
ol.custom-list {
  margin-left: 20px;
  line-height: 27px; /* Adjust the value to your preference */
}
/* related question */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .gauge{
    width:100% !important;
  }
}
  .load {
        display: none; /* Hide all headings by default */
    }
/* searchBar */
#search {
  margin-bottom: 10px;
}
#list {
  display: none;
}
.search-container {
  position: relative;
  display: inline-block;
}

.search-box {
  padding-right: 30px; /* Adjust padding for the search icon */
}

.search-icon {
  position: absolute;
  top: 16px;
  right: 23px;
  color: #808080; /* Adjust color as needed */
}

#list {
  display: none;
}
.ul-search {
  max-height: 310px;
  overflow-y: auto;
  white-space: nowrap;
}

.ul-search {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ul-search li {
  white-space: nowrap;
}

.list-border {
  border-bottom: 1px solid #ddd;
  padding: 10px;
}

.search-container {
  position: relative;
}

/* .search-box {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
} */

/* .search-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
} */

