

    /* MAIN CONTENT */
    .content {
      flex: 1;
      padding: 20px;
    }

    .container {
      max-width: 700px;
      margin: auto;
      background: white;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 0 10px #ccc;
    }

    h2 {
      margin-bottom: 20px;
      text-align: center;
      font-weight: 700;
      color: #1e3a8a;
    }

    textarea, select, .genButon {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
    }

    pre {
      background: #f9f9f9;
      padding: 10px;
      border: 1px solid #ddd;
      overflow-x: auto;
    }

    .output {
      display: none;
      margin-top: 20px;
    }

    /* BUTTONS */
    .genButon {
      background-color: #90caf9;
      color: #1e3a8a;
      border: none;
      border-radius: 8px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .genButon:hover {
      background-color: #64b5f6;
    }

   
.about-section {
      margin-top: 40px;
      background: #fdfdfd;
      padding: 30px 20px;
      border-radius: 8px;
      box-shadow: 0 0 8px rgba(0,0,0,0.05);
    }
    .about-section h3, .about-section h4 {
      color: #222;
      margin-bottom: 10px;
    }
    .about-section ul {
      padding-left: 20px;
      margin-top: 0;
    }

  .output {
    display: none;
    margin-top: 20px;
    position: relative;
  }

  .output-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-weight: bold;
  }

  #copyBtn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
  }

  #copyBtn:hover {
    opacity: 0.7;
  }

/* Ensure copy button is always visible on mobile & tablet */
@media (max-width: 768px) {
  .output-header {
    flex-wrap: wrap;  /* allows button to move to next line if needed */
    gap: 8px;         /* spacing between label and button */
  }

  #copyBtn {
    display: inline-block; /* make sure it is visible */
    flex-shrink: 0;        /* prevent it from shrinking */
    font-size: 22px;
    padding: 6px;
    line-height: 1;
  }

  pre {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  #copyBtn {
    font-size: 20px;
    padding: 8px;   /* easier to tap */
  }
}
