/* brainstormatron.css */

/* Main container unique to Brainstormatron page */
.brainstorm-container {
    width: 90%;
    max-width: 700px;
    margin: 30px auto;
    text-align: left;
  }
  
  /* Subtitle under the hero title */
  .brainstorm-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #bbb;
    margin-bottom: 30px;
  }
  
  /* Form groups for Brainstormatron input fields */
  .form-group {
    margin-bottom: 20px;
  }
  .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ccc;
  }
  .form-group input,
  .form-group select {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    color: #ddd;
    background: #4A4E57;
    border: 1px solid #555;
    border-radius: 4px;
    box-sizing: border-box;
  }
  .form-group input::placeholder {
    color: #999;
  }
  
  /* Button row for the Generate + Reroll buttons */
  .button-row {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
  }
  
  .btn {
    display: inline-block;
    background: #ffb300;
    color: #000;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
  }
  .btn:hover {
    background: #e6a100;
  }
  
  /* Ideas List */
  .brainstorm-container h2 {
    margin-top: 20px;
    color: #fff;
    font-weight: 700;
  }
  #ideasList {
    list-style: disc;
    padding-left: 20px;
    margin-top: 15px;
  }
  #ideasList li {
    margin-bottom: 10px;
  }
  