/* Styles for the exit‑intent overlay */

.exit-intent-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.exit-intent-overlay-content {
  position: relative;
  background: #ffffff;
  color: #000000;
  padding: 1.5rem;
  max-width: 90%;
  width: 400px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  text-align: left;
  font-size: 16px;
}

.exit-intent-title {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.exit-intent-posts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.exit-intent-post-item {
  margin-bottom: 0.5rem;
}

.exit-intent-post-item a {
  color: #0073aa;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.exit-intent-post-item a:hover,
.exit-intent-post-item a:focus {
  color: #005177;
  border-color: #005177;
}

.exit-intent-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: #000000;
  transition: color 0.2s;
}

.exit-intent-close:hover,
.exit-intent-close:focus {
  color: #777777;
}