/* styles.css */
[class*="max-w-[1200px]"] {
  padding-left: 5px;
  padding-right: 5px;
}

#popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  
}

#popupContent {
  background: #0f172a;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  margin: 10% auto;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

#popupContent pre {
  white-space: pre-wrap;
}

#closePopup {
  margin-top: 15px;
  padding: 8px 16px;
  background: #ff4444;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  color: white;
}

