/**
 * @file
 * LMK Popup styles.
 */

#lmk-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#lmk-popup-box {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}

.lmk-popup-content {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #333;
}

.lmk-popup-content h2 {
  margin-top: 0;
}

.lmk-popup-content p {
  margin: 0 0 15px 0;
}

.lmk-popup-content p:last-child {
  margin-bottom: 0;
}

#lmk-popup-close {
  background: #005c78;;
  color: #fff;
  border: none;
  padding: 10px 30px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background 0.3s ease;
}

#lmk-popup-close:hover {
  background:#fff;
  color: #005c78;
  border: 1px solid #005c78;
}

#lmk-popup-close:focus {
  outline: 2px solid #005c78;
  outline-offset: 2px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  #lmk-popup-box {
    padding: 20px;
    width: 95%;
  }
  
  .lmk-popup-content {
    font-size: 14px;
  }
}
