/* Wellsites move notice */
:root {
  --move-bar-bg: #0f172a;
  --move-bar-text: #f8fafc;
  --move-bar-accent: #84cc16;
  --move-popup-bg: #ffffff;
  --move-popup-text: #0f172a;
  --move-popup-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
}

.move-bar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--move-bar-bg);
  color: var(--move-bar-text);
  padding: 10px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-align: center;
}

.move-bar a {
  color: var(--move-bar-accent);
  font-weight: 700;
  text-decoration: none;
}

.move-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 16px;
}

.move-modal {
  width: min(520px, 100%);
  background: var(--move-popup-bg);
  color: var(--move-popup-text);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--move-popup-shadow);
  text-align: left;
}

.move-modal h2 {
  margin: 0 0 10px;
  font-size: 26px;
  color: #0f172a;
}

.move-modal p {
  margin: 0 0 18px;
  line-height: 1.5;
}

.move-modal .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.move-modal .primary {
  background: var(--move-bar-accent);
  color: #0f172a;
  border: none;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}

.move-modal .secondary {
  background: transparent;
  border: 1px solid #cbd5f5;
  color: #0f172a;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.wellsites-form-note {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  font-size: 14px;
}

.icon-facebook,
.icon-search {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
}

/* Facebook hover effect - show blue background on hover */
.w-socials.color_brand.hover_fade .w-socials-item.facebook .w-socials-item-link-hover {
  display: block;
  background: #1e77f0;
}
.w-socials.color_brand.hover_fade .w-socials-item.linkedin .w-socials-item-link-hover {
  display: block;
  background: #0077b5;
}

@media (max-width: 640px) {
  .move-bar {
    font-size: 13px;
  }
  .move-modal {
    padding: 22px;
  }
}
