.bedrock-claude-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
}

.bedrock-claude-form .form-group {
    margin-bottom: 15px;
}

.bedrock-claude-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.bedrock-claude-form input,
.bedrock-claude-form select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.bedrock-claude-form button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.bedrock-claude-form button:hover {
    background-color: #005177;
}


.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Adds space between checkbox and label */
    padding: 0.25rem 0;
}

.form-check-input {
    margin: 0; /* Removes default margin */
    width: 1.1em !important;
    height: 1.1em !important;
    flex-shrink: 0;
}

.form-check-label {
    margin: 0;
    line-height: 1.5;
}

.terminal-output {
    background-color: #1e1e1e;
    color: #00ff00;
    font-family: monospace;
    padding: 15px;
    border-radius: 5px;
    white-space: pre-wrap;
    min-height: 200px;
    line-height: 1.4;
}

/* custom css */
.question-sidebar {
    border-right: 1px solid #ddd;
    min-height: 100vh;
  }
  .step {
    cursor: pointer;
    justify-content: space-between;
  flex-direction: row-reverse;
  display: flex
;

  }
  .step.active {
      font-weight: bold;
  color: #0d6efd;
  background: transparent;
  }
  .step.completed i {
    color: green;
    margin-right: 6px;
  }
  .form-section {
    padding: 2rem;
  }
  .form-check {
    padding-left: 0;
    border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  }
  .form-check .form-check-input{
      margin-left: 0;
      margin-right: 10px;
  }
  .progress {
  height: 10px;
  border-radius: 5px;
}