/* Modal base */
.modal {
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.modal.hidden {
  display: none;
}

.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
}

.modal-content p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #333;
}

.close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 1.5rem;
  color: #888;
  cursor: pointer;
}
