 /* стиль фона затемнения */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none; /* по умолчанию скрыто */
    justify-content: center;
    align-items: center;
    z-index: 2000;
  }

  /* стиль окна сообщения */
  .modal {
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 300px;
    text-align: left;
  }

  /* кнопка закрытия */
  .close-btn {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  .close-btn:hover {
    background-color: #0056b3;
  }