


/* Modal container */
.modal {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  left: 0; 
  top: 0; 
  width: 100%; 
  height: 100%; 
  overflow: hidden; 
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

/* Modal content box */
.modal-content {
  position: relative;
  background-color: #111;      /* Darker background for contrast */
  margin: 2% auto;
  padding: 0;
  border: 2px solid gold;      /* Gold outline */
  width: 90%;
  height: 90%;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 30px gold;   /* Glowing gold effect */
  color: white;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: gold;
  cursor: pointer;
  user-select: none;
}

/* If you’re embedding an iframe inside */
.modal-content iframe {
  flex: 1;
  width: 100%;
  border: none;
  border-radius: 0 0 12px 12px;
}
