/* Basic styles for lock boxes and popup */
.faac-wrapper { margin: 1rem 0; }
.faac-section { margin-bottom: 1rem; }
.faac-locked {
  border: 1px dashed #ccc;
  padding: 16px;
  border-radius: 10px;
  background: #fafafa;
  /*display: flex;*/
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.faac-locked p { margin: 0; font-weight: 600; }
.faac-btn {
  background: #0073aa;
  color: #fff !important;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
}

#fa-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
#fa-popup .fa-popup-content {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  width: min(90vw, 360px);
  position: relative;
  text-align: center;
}
#fa-close {
  position: absolute;
  top: 8px;
  right: 12px;
  cursor: pointer;
  font-weight: 700;
}


#fa-plan-popup { display:none; }
#fa-plan-popup .fa-plan-inner { /* you already have inline CSS; add any extra here */ }
.faac-plan-trigger { transition: transform .12s ease; }
.faac-plan-trigger:hover { transform: scale(1.01); }