/* Container for the entire form */
.cr-form {
    /* max-width: 600px;       Limit the width to make it more readable */
    margin: 2rem auto;      /* Center on page with top/bottom spacing */ 
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    border: 1px solid #ddd;
    text-align: left;
  }
  
  /* Step titles */
  .cr-step-title {
    margin-top: 0;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    color: #333;
  }
  
  /* Subtitles / small headings */
  .cr-subtitle {
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #444;
  }
  
  /* Paragraph text inside form */
  .cr-text {
    margin-bottom: 0.75rem;
    color: #555;
    line-height: 1.4;
  }
  
  /* Labels */
  .cr-label {
    display: inline-block;
    font-weight: 600;
    margin-top: 0.5rem;
    color: #333;
  }
  
  /* Error messages */
  .cr-error {
    color: #d00;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  /* Input fields (text, file, quantity) */
  .cr-input-text,
  .cr-input-file,
  .cr-input-qty {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-top: 0.25rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  /* Number input specifically for Return Qty */
  .cr-input-qty {
    width: 60px;            /* Make quantity field narrower */
    display: inline-block;
    margin-right: 0.5rem;
  }
  
  /* Radio buttons */
  .cr-input-radio {
    margin-right: 0.4rem;
  }
  
  /* Buttons */
  .cr-button {
    display: inline-block;
    background-color: #0073aa; /* WP-ish blue */
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0.6rem 1rem;
    margin-right: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
  }
  
  .cr-button:hover {
    background-color: #005b8f;
  }


  .cr-input-textarea {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-top: 0.25rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
  }


  .cr-button-back {
    display: inline-block;
    background-color: #fff; 
    color: #222;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.6rem 1rem;
    margin-right: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
  }
  
  /* Tables (for items/summary) */
  .cr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
  }
  
  .cr-table th,
  .cr-table td {
    border: 1px solid #ccc;
    padding: 0.6rem;
    text-align: left;
    vertical-align: middle;
  }
  
  .cr-table thead {
    background-color: #f0f0f0;
  }
  
  .cr-order-items-table th,
  .cr-summary-table th {
    background-color: #e7e7e7;
  }
  

  #contact-form .bi-asterisk 
  {
    font-size:0.5em;
    vertical-align: top;
  }