.modal {
  display: none; /* Сховати модальне вікно за замовчуванням */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  padding: 50px 20px;
}

@media screen and (max-width: 600px) {
  .modal {
    padding: 50px 20px;
  }

  .modal-content {

  border: 1px solid #888;
  max-width: 100% !important;
  max-height: 100% !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  overflow-y: auto;
}
  
}

/* Вміст модального вікна */
.modal-content {
  background-color: #fefefe;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #888;
  width: 60%;
  max-width: 100%;
  max-height: 100% !important;
  height: 100%;
  overflow-y: auto;
}

/* Кнопка для закриття */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}