/* Popup Modal Styling */
.popup-modal {
    display: flex; /* Hidden by default */
    position: fixed;
    z-index: 1000; /* On top of all elements */
    left: 0;
    top: 0;
    width: 100%;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    pointer-events: auto; /* Allow clicking inside the popup */
    justify-content: center;
    align-items: center;
  }
  
  .popup-content {
    background-color: #1b1b1b;
    margin: 22.5% auto;
    padding: 20px;
    width: 28em;
    height: 11em;
    text-align: center;
    border-radius: 8px;
    position: relative;
    z-index: 1001;
    border: 2px solid #D78565;
  }
  
  .popup-content h2 {
    color: #D78565;
    font-family: 'Conquera', sans-serif;
    margin: 0;
    /* font-size: 2em; */
    margin-bottom: 35px;
  }
  
  .popup-content p {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    margin-bottom: 35px;
  }
  
  #closePopupBtn {
    padding: 10px 20px;
    background-color: #D78565;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  }
  
  #closePopupBtn:hover {
    background-color: #b06452;
  }
  