
  body {
    margin: 0;
    padding: 0;

  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
  }

  .container {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 400px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }

  .container p {
    margin: 10px 0;
    font-size: 16px;
  }

  .container input {
    width: 180px;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
  }

  .container input[type="submit"] {
    background-color: #ff6600;
    color: #fff;
    cursor: pointer;
  }

  .background {

     background-image: url('https://expozahid.com/galychyna_fashion_expo/invitation/images/banner-min.png'); /* Replace with your background image URL */
    background-size: cover;
    background-position: center;
    font-family: Arial, sans-serif;
    color: #fff;
    height: 100%;
    width: 100%;
    position: absolute;
  }
.background-overlay {
  height: 100%;
    width: 100%;
  backdrop-filter: blur(5px);
}

.suggestions-box {
    display:none;
    position:absolute;
    left: 0;
    right: 0;
    border: 1px solid #CCCCCC;
    background-color: #FFFFFF;
    color: #000; 
    z-index: 1000; /* Забезпечуємо, щоб вікно відображалося над іншими елементами */
    max-height: 200px; /* Максимальна висота вікна */
    overflow-y: auto; /* Додати прокрутку при перевищенні максимальної висоти */
}

.suggestions-box div {
    padding: 10px;
    background-color: #fff; /* Білий фон для кожної пропозиції */
    border-bottom: 1px solid #ddd; /* Межа між пропозиціями */
}

.suggestions-box div:hover {
    background-color: #f0f0f0; /* Сірий фон для пропозицій при наведенні */
}

.suggestions-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.suggestions-list li {
    padding: 10px;
    cursor: pointer;
    color: #000;
    border-bottom: 1px solid #CCCCCC;
}

.suggestions-list li:last-child {
    border-bottom: none;
}

.suggestions-list li:hover {
    background-color: #EFEFEF;
}


