/* Контейнер */
.mdc-live-search{
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 24px;
}

.mdc-live-search__label{
  display: block;
  width: 100%;
}

/* Поле */
.mdc-live-search__input{
  width: 100%;
  display: block;
  padding: 12px 16px;
  border: 1px solid #dfe3ea;
  border-radius: 10px;
  background: #fff;
  font-size: 16px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.mdc-live-search__input:focus{
  border-color: #9bb7ff;
  box-shadow: 0 0 0 3px rgba(46,104,255,.12);
}

/* Випадаючий список */
.mdc-live-search__results{
  position: absolute;
  left: 0; right: 0;
  top: calc(100% + 8px);
  margin: 0; padding: 8px;
  list-style: none;
  background: #fff;
  border: 1px solid #e8ebf2;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(16,24,40,.08);
  z-index: 9999;
  max-height: 70vh;
  overflow: auto;
}

.mdc-live-item a{
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .15s;
}
.mdc-live-item a:hover{
  background: #f5f9ff;
}

.mdc-live-item__title{
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: #0f172a;
  margin-bottom: 4px;
  line-height: 1.3;
}
.mdc-live-item__excerpt{
  display: block;
  font-size: 13px;
  color: #475569;
  line-height: 1.4;
}

.mdc-live-empty{
  padding: 12px 14px;
  color: #64748b;
  text-align: center;
  font-size: 14px;
}
