
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
}

.modal-content {
  background: #fff;
  width: 90%;
  max-width: 350px;
  margin: auto;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  position: relative;

  /* Centering */
  top: 50%;
  transform: translateY(-50%);
}

.modal-content h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.modal-content p {
  font-size: 14px;
  color: #555;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

#okBtn {
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  background: #000;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
}

#okBtn:hover {
  background: #333;
}

/* 📱 Extra small devices */
@media (max-width: 480px) {
  .modal-content {
    padding: 15px;
    border-radius: 10px;
  }

  .modal-content h2 {
    font-size: 18px;
  }

  .modal-content p {
    font-size: 13px;
  }
}
