
/* Modal Overlay */
#modalOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1000;
}

/* Modal Box */
#modalBox {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000;
  color: #ccc;
  padding: 30px;
  border-radius: 10px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

#modalBox h2 {
  margin-top: 0;
  margin-bottom: 15px;
}

#modalBox button {
  background-color: #444;
  color: #ccc;
  border: none;
  padding: 10px 20px;
  margin-top: 20px;
  cursor: pointer;
  border-radius: 5px;
}

#modalBox button:hover {
  background-color: #666;
}