.axr-form-container {
    max-width: 700px;
    margin: 50px auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .axr-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 20px; /* Add gap between step items */
  }
  

  
  .axr-step {
    text-align: center;
    flex: 1;
    position: relative;
    color: #aaa;
  }
  
  .axr-step.active {
    font-weight: bold;
    color: #0056b3;
  }
  
  .axr-step:before {
    content: attr(data-step);
    display: inline-block;
    background: #ccc;
    color: white;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    margin-bottom: 5px;
  }
  
  .axr-step.active:before {
    background: #0056b3;
  }
  
  .axr-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15px;
    right: -50%;
    width: 100%;
    height: 3px;
    background: #ccc;
    z-index: -1;
  }
  
  .axr-step.active + .axr-step::after {
    background: #0056b3;
  }
  
  .axr-form-container h2 {
    color: #333;
  }
  
  .axr-form-container label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
  }
  
  .axr-form-container input,
  .axr-form-container select,
  .axr-form-container textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 14px;
  }
  
  .axr-form-container textarea {
    resize: vertical;
  }
  
  .axr-checkbox-group {
    margin-top: 20px;
  }
  
  .axr-checkbox-group input {
    width: auto;
    margin-right: 10px;
  }
  
  .axr-form-footer {
    margin-top: 30px;
    text-align: center;
  }
  
  .axr-btn-primary {
    background: #0056b3;
    color: white;
    padding: 12px 25px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
  }
  
  .axr-support-link {
    display: block;
    margin-top: 10px;
    color: #555;
    text-decoration: none;
  }
  
  .axr-form-step {
    display: none;
  }
  
  .axr-form-step.active {
    display: block;
  }
  
  .axr-step-actions {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
  }
  
  .axr-next-btn,
  .axr-prev-btn {
    padding: 10px 20px;
    border: none;
    background: #0056b3;
    color: white;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .axr-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
  }
  
  .axr-checkbox-group input[type="checkbox"] {
    margin-top: 20px;
  }
  
  .axr-checkbox-group label {
    font-weight: normal;
    line-height: 1.5;
  }
  .submission-content {
    line-height: 1.6;
    margin: 20px 0px 0px 0px;
    color: #333;
  }
  
  .submission-content p {
    margin-bottom: 15px;
  }
  
  @media (max-width: 768px) {
    .axr-steps {
        flex-direction: column; /* Stack the steps vertically on mobile */
        align-items: center; /* Center-align the steps on mobile */
        gap: 15px; /* Adjust the gap between stacked items */
    }

    .axr-step {
        text-align: center; /* Ensure the steps are centered */
        margin: 0 0 10px 0; /* Add some margin for spacing between steps */
    }
}