* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 10px;
}

.popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 100%;
  max-width: 600px; /* LEBIH LEBAR */
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.popup-content img {
  width: 100%;
  border-radius: 8px;
  height: auto;
}

.popup-content p {
  margin-top: 10px;
  font-size: 16px;
}

.checkbox-wrapper {
  margin: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.checkbox-wrapper label {
  font-size: 14px;
  cursor: pointer;
}

.checkbox-wrapper input[type="checkbox"] {
  margin-right: 8px;
  transform: scale(1.2);
  cursor: pointer;
}

.popup-content button {
  background-color: #3498db;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: not-allowed;
  opacity: 0.6;
  margin-top: 10px;
  width: 100%;
  max-width: 300px;
}

.popup-content button.enabled {
  cursor: pointer;
  opacity: 1;
}