   .flex-cont {
   display: flex; 
   flex-direction: row; 
   gap: 20px;
   }
   .form-container {
   background-color: white;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
   padding: 20px 30px;
   max-width: 700px;
   width: 100%;
   margin-bottom: 50px;
   }
   .form-container h1 {
   text-align: center;
   margin-bottom: 20px;
   color: #333;
   font-size: 30px;
   font-weight: bold;
   }
   .form-container label {
   display: block;
   margin-bottom: 8px;
   font-weight: bold;
   color: #555;
   }
   .form-container input[type="file"],
   .form-container select {
   width: 100%;
   padding: 10px;
   margin-bottom: 15px;
   border: 1px solid #ccc;
   border-radius: 4px;
   font-size: 14px;
   background: #f5f9fc;
   }
   .form-container button {
   width: 100%;
   padding: 12px;
   background-color: #4482c9;
   border: none;
   border-radius: 4px;
   font-size: 16px;
   color: white;
   cursor: pointer;
   transition: background-color 0.3s;
   }
   .form-container button:hover {
   background-color: #0056b3;
   }
   .form-container .price {
   font-size: 14px;
   color: #777;
   margin-top: -15px;
   }
   .price-display {
   text-align: right;
   padding-right: 20px;
   font-size: 20px;
   }
   .price-display span{
   font-size: 25px;
   font-weight: bold;
   }
   .ncd-container {
   flex: 1;
   overflow-x: auto;
   background-color: #f9f9f9;
   padding: 20px;
   margin-bottom: 50px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
   }
   .nc-header {
   font-size: 20px;
   font-weight: bold;
   padding-bottom: 5px;
   border-bottom: 1px solid #cccccc;
   margin-bottom: 5px;
   }
   .nc-text {
   margin-bottom: 15px;
   }
   .green-button {
   display: inline-block;
   padding: 10px 20px;
   font-size: 16px;
   font-weight: bold;
   color: #fff;
   text-decoration: none;
   background-color: #28a745;
   border-radius: 4px;
   transition: background-color 0.3s ease, transform 0.2s ease;
   }
   .green-button:hover {
   background-color: #218838;
   }
   .green-button:active {
   background-color: #1e7e34;
   }
   .ncd-button {
   text-align: center;
   margin-top: 30px;
   }
   .ul-ncd {
   margin-top: -10px;
   }
   .ul-ncd ul{
   padding: 0px 0 30px 25px;
   }
   .ul-ncd ul li{
   list-style: decimal;
   padding-left: 10px;
   }
   .ncd-ok {
   text-align: center;
   }
   .ncd-ok i{
   color: #28a745;
   font-size: 100px;
   }
   .ncd-ok div {
   margin: 15px 0 10px 0;
   }
   .ncd-ok a{
   padding: 5px;
   color: #fff;
   border-radius: 4px;
   background: #28a745;
   }

   .ncd_info {
   font-weight: bold;
   }
   .vin_ncd {
   padding: 5px;
   }
   .info_ncd {
   font-size: 11px;
   line-height: 14px;
   padding-left: 5px;
   }
   .ncd_but {
   background: #82a0c3;
   padding: 10px;
   color: #fff;
   border-radius: 4px;
   margin: 0 3px;
   }
   .ncd_ok {
   background: #45a245;
   padding: 10px;
   color: #fff;
   border-radius: 4px;
   margin: 0 3px;
   }
   .styled-table a:hover {
   background: #36404b;
   }
   .table-container {
   overflow-x: auto;
   min-height: 300px;
   width: 100%;
   }
   .styled-table {
   border-collapse: collapse;
   margin-bottom: 35px;
   font-size: 14px;
   text-align: left;
   width: 100%;
   border: 1px solid #ddd;
   }
   .styled-table th, .styled-table td {
   padding: 12px 15px;
   border: 1px solid #ddd;
   }
   .styled-table thead tr {
   background-color: #f4f4f4;
   font-weight: bold;
   }
   .styled-table tbody tr {
   border-bottom: 1px solid #ddd;
   }
   .styled-table tbody tr:nth-of-type(even) {
   background-color: #f9f9f9;
   }
   .td-ncd {
   text-align: center;
   }
   .td-ncd i {
   font-size: 30px;
   color: #4572a6;
   }
           .td-ncd .fa-check {
           color: #45a245;
       }
               .td-ncd .fa-times {
           color: #ea5b1f;
       }
   .edit-icon, .comment-icon {
   margin-right: 8px;
   text-decoration: none;
   font-size: 16px;
   color: black;
   }
   .edit-icon:hover, .comment-icon:hover {
   color: blue;
   }
   
   .vin-txt {
   border: 1px solid #ccc;
    width: 100%;
    font-size: 22px;
    font-weight: bold;
    padding: 12px 20px;
    line-height: 22px;
    margin-bottom: 10px;
    background: #f5f9fc;
   }
   .vin-txt::placeholder {
  color: #d3d3d3;
  font-weight: normal;
}
   
   @media only screen and (max-width: 1023px){
	      .flex-cont {
   display: block; 
   }
   .form-container {
   max-width: 100%;
   }
   .styled-table td {
   padding: 12px 5px !important;
   }
   .td-ncd i { 
   font-size: 20px !important;
   }
   .ncd_but, .ncd_ok {
   padding: 5px;
   }
   }