@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

#crazy_coder-response-wrapper {
  font-family: 'Poppins', sans-serif;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  padding: 30px 10px;
  box-sizing: border-box;
}

#crazy_coder-response-wrapper .crazy_coder-container {
  background: rgba(20,20,20,0.92);
  border: 1px solid rgba(74,58,253,0.4);
  box-shadow: 0 0 25px rgba(74,58,253,0.3);
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  max-width: 700px;
}

#crazy_coder-response-wrapper .crazy_coder-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  color: #fff;
}

#crazy_coder-response-wrapper .crazy_coder-subtitle {
  text-align: center;
  color: #aaa;
  margin-bottom: 20px;
}

#crazy_coder-response-wrapper .crazy_coder-inputs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#crazy_coder-response-wrapper .crazy_coder-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #cfcafc;
}

#crazy_coder-response-wrapper .crazy_coder-input,
#crazy_coder-response-wrapper .crazy_coder-select {
  border: 1px solid rgba(124,104,255,0.35);
  background: #0f0f10;
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  transition: 0.3s;
}

#crazy_coder-response-wrapper .crazy_coder-input:focus,
#crazy_coder-response-wrapper .crazy_coder-select:focus {
  border-color: #4A3AFD;
  box-shadow: 0 0 10px rgba(74,58,253,0.6);
  outline: none;
}

#crazy_coder-response-wrapper .crazy_coder-btn {
  margin-top: 10px;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(90deg, #4A3AFD, #7C68FF);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#crazy_coder-response-wrapper .crazy_coder-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 25px rgba(124,104,255,0.7);
}

#crazy_coder-response-wrapper .crazy_coder-btn-outline {
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(124,104,255,0.6);
  background: transparent;
  color: #e9e6ff;
  cursor: pointer;
  transition: 0.3s;
}
#crazy_coder-response-wrapper .crazy_coder-btn-outline:hover {
  background: rgba(124,104,255,0.15);
}

#crazy_coder-response-wrapper .crazy_coder-output {
  margin-top: 20px;
  background: #111;
  border: 1px solid rgba(124,104,255,0.25);
  border-radius: 10px;
  padding: 16px;
  white-space: pre-wrap;
  color: #e6e6ff;
  min-height: 120px;
  font-size: 1rem;
  line-height: 1.5;
}
