body {
  margin: 0 auto; /* Center the body horizontally */
  max-width: 1500px; /* Set maximum width for the body */
}

.UserReqContainer {
    display: flex;
    justify-content: space-between;
  }

  .UserReqBox {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
    width: calc(50% - 20px);
  
  }
  
  @media screen and (max-width: 768px) {
    .UserReqContainer {
      flex-direction: column;
    }
  
    .UserReqBox {
      width: calc(100% - 40px); /* Adjust width to fit the screen and provide some margin */
      margin: 0 auto 20px; /* Center the box horizontally and add margin bottom */
      padding: 20px; /* Add padding to match the desktop layout */
    }
    
  }
    h2 {
      text-align: center;
    }
  
    ul {
      margin-left: 0; /* Reset margin for ul */
      padding-left: 20px; /* Add left padding to ul for better indentation */
      font-size: 18px; /* Reduce font size for better readability on smaller screens */
    }

  


  .SourceCodeView {
    text-align: center;
    margin-top: 20px;
  }

  .SourceCodeView a {
    width:75%;
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
  }

  .SourceCodeView a:hover {
    background-color: #0056b3;
  }




.caption {
  display: block;
  text-align: center;
  margin-top: 5px; /* Adjust margin as needed */
  font-size: 14px; /* Adjust font size as needed */
}
