/* Overall overlay styling */
.arcpoint-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none; /* Hidden by default; shown by JS */
  }
  
  /* Popup inner content container */
  .arcpoint-popup-content {
    position: relative;
    max-width: 600px; /* Slightly wider than before */
    margin: 100px auto;
    padding: 2rem;
    background: #fff;
    border-radius: 6px;
    text-align: center;
    font-size: 0.9rem;
  }
  
  /* Close "x" button */
  .arcpoint-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  /* The heading span */
  .arcpoint-popup-heading {
    display: block;
    font-weight: 900;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #005a96;
  }
  
  /* Paragraph styling */
  .arcpoint-popup-content p {
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  /* Wrap buttons in a vertical stack */
  .arcpoint-popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center; /* Center horizontally */
  }
  
  /* Primary button (Schedule) - pill shape */
  .arcpoint-popup-button {
    display: inline-block;
    padding: 0.55rem 1.15rem;
    background-color: #54b8a1; /* Adjust to match branding */
    color: #fff;
    text-decoration: none;
    border-radius: 9999px; /* Pill shape */
    cursor: pointer;
    width: auto; 
    border: none;
  }
  
  /* "Clear" button - no background */
  .arcpoint-popup-nevermind {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    background-color: transparent; /* Removed background */
    color: #000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: auto;
  }
  