/**
 * Conservation Nation Custom Styles
 * 
 * This file contains custom styles that will be loaded site-wide
 * regardless of the active theme
 */

/* Modal wrapper */
#cn-pre-download-form {
  display: none;
}

#cn-pre-download-form.is-open {
  display: block;
}

/* Overlay */
#cn-pre-download-form .oew-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 100000;
}

/* Centered container */
#cn-pre-download-form .oew-modal-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 640px;
  z-index: 100001;
}

#cn-pre-download-form .oew-modal-inner {
  position: relative;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 24px;
  max-height: 80vh;
  overflow: auto;
}

#cn-pre-download-form .oew-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: 0;
  padding: 6px;
  cursor: pointer;
  line-height: 0;
}

body.cn-modal-open {
  overflow: hidden;
}
