/* Convert button style */
.wpturbo-convert-btn {
  background-color: #0073aa;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  padding: 3px 6px;
  font-size: 10px;
  transition: background-color 0.3s ease;
}
.wpturbo-convert-btn:hover {
  background-color: #005177;
}

/* Lightbox overlay */
#wpturbo-lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  z-index: 999999;
  justify-content: center;
  align-items: center;
  padding: 10vh 10vw;
  box-sizing: border-box;
}

/* Lightbox content */
#wpturbo-lightbox-content {
  position: relative;
  max-width: 80vw;
  max-height: 80vh;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Close button */
#wpturbo-lightbox-close {
  position: fixed;
  top: 5vh;
  right: 5vw;
  font-size: 28px;
  background: #000;
  color: #fff;
  padding: 5px 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999999;
}
