/* ***************For Searching*************** */
.search-container {
  margin-top: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.line-container {
  display: flex;
  align-items: center;
  text-align: center;
}

.line {
  flex-grow: 1;
  border-bottom: 1px solid #ccc;
}

.or-text {
  padding: 0 10px;
  font-weight: bold;
  color: #333;
}

.autocomplete-items {
  border: 1px solid #ccc;
  border-top: none;
  max-height: 150px;
  width: 100%;
  overflow-y: auto;
  position: absolute;
  z-index: 99;
  background-color: #fff;
}

.autocomplete-item {
  padding: 8px;
  cursor: pointer;
}

.autocomplete-item:hover {
  background-color: #ddd;
}

/* ****************For result table***************** */
  .card-table {
    display: table;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
  }
  .card-table .card-row {
    display: table-row;
  }
  .card-table .card-cell {
    display: table-cell;
    padding: 10px;
    border: 1px solid #ddd;
    vertical-align: top;
  }
  .card-table .card-header {
    font-weight: bold;
  }
