
  #locationPopup {
    display: none; 
    position: fixed; 
    bottom: 0;
    left: 0;
    background-color: white;
    border-top: 1px solid #ccc; 
    padding: 10px 40px 10px 20px;
    z-index: 9999;
    width: 100%;
    height: auto; 
    box-sizing: border-box;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1); 
    border-radius: 0;
    
    display: flex;
    flex-direction: row;
    gap: 20px; 
    align-items: center;
    justify-content: center; 
  }

  #closePopupBtn {
    position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
    width: 26px; height: 26px; border-radius: 50%; border: 1px solid #ccc;
    background-color: transparent; color: #999; font-size: 18px;
    display: flex; justify-content: center; align-items: center; cursor: pointer; padding: 0;
  }
  #closePopupBtn:hover { background-color: #f1f1f1; color: #333; }

  .mobile-br { display: none; }

  #locationMessageContainer {
    width: auto;
    text-align: left; 
    padding-top: 0;
  }

  #locationMessage {
    font-size: 16px; 
    font-weight: bold; 
    line-height: 1.6;
    margin: 0;
  }

  #additionalMessageContainer {
    width: auto;
    text-align: left; 
    margin-bottom: 0;
  }

  .additional-text {
    font-size: 13px; 
    color: gray; 
    margin: 0;
  }

  #locationPopup .button-group {
    display: flex;
    gap: 15px; 
    justify-content: center;
    width: auto;
  }

  #locationPopup button:not(#closePopupBtn) {
    height: 36px;
    line-height: 32px; 
    font-size: 16px; 
    cursor: pointer;
    width: 145px;
    border-radius: 4px; 
    box-sizing: border-box;
    padding: 0;
  }

  #yesButton { background-color: #286ab4; border: 2px solid #286ab4; color: white; }
  #yesButton:hover { background-color: #1c4c82; border-color: #1c4c82; }
  #noButton { background-color: transparent; border: 1px solid #286ab4; color: #286ab4; }
  #noButton:hover { background-color: #e9ecef; }


@media (max-width: 599px) {
    #locationPopup .button-group {
      margin-bottom: 10px;
      margin-right: 0;
      margin-left: 0;
      display: flex;
      gap: 10px;  
      width: 100%;
    }
    #locationPopup {
      width: 100%;
      left: 0;
      bottom: 0;
      border-radius: 0;
      padding: 10px 10px;
      box-sizing: border-box;
      gap: 10px;
      flex-direction: column;
      align-items: flex-start;
    }
    #locationMessage {
      font-size: 15px;
    }
    #locationPopup .button-group button {
      flex: 1;
    }
    .additional-text {
      font-size: 13px;
    }
    #closePopupBtn { display: none; }
    .mobile-br { display: inline; }
}
