.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1000000;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  padding: 0;
}

  
  .popup-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 0;
    padding: 2rem;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    overflow-y: auto;
  }
  
  .full-screen-popup {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
  }
  
  .popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    color: #333;
    cursor: pointer;
    font-weight: bold;
    z-index: 10100;
  }
  
  #formSuccessMessage {
    display: none;
    margin-bottom: 1.5rem;
    padding: 1rem 1.5rem;
    border-left: 5px solid #10b981;
    background-color: #ecfdf5;
    color: #065f46;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 0.375rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }

  