/* pop-up.css */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  position: relative;
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  width: 90%;
  max-width: 600px;
  border-radius: 8px;
  text-align: center;
}

.modal-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 15px;
}

.modal-content .btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  background-color: #007BFF;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
}

.modal-content .btn:hover {
  background-color: #0056b3;
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
}

.modal-close:hover {
  color: #000;
}
