.appraisal-form-wrapper {
  background: #fff;
  padding: 30px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 800px;
  margin: auto;
  border: 1px solid rgba(0, 0, 0, .12);
  }

  .ezimage-container {
    max-width: 400px;
}
  
  /* .appraisal-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  } */
  
 
  .appraisal-form select,
  .appraisal-form textarea {
    padding: 12px 15px;
    resize: none;
    width: 100%;
    font-size: 16px;
    background: #fff;
    color: #657b93;
    border: 1px solid #e3e4e6;
    border-radius: 3px;
    outline: none;
    transition: 0.3s ease-in-out;
    margin-bottom: 15px;
  }
  
  .appraisal-form select:focus,
  .appraisal-form textarea:focus {
    outline: none;
    border: 1px solid #41ceb1;
  }
  
  .appraisal-form button,.appraisal-btn  {
    background-color: rgba(65, 206, 177, 0.2);
    color: #41ceb1;
    padding: 12px 25px;
    font-size: 16px !important;
    font-weight: 700 !important;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition-3s);
  }
  
  .appraisal-form button:hover,.appraisal-btn:hover {
    background-color: #41ceb1;
    color: #fff!important;
  }

  .appraisal-btn {
    display: inline-block;
    margin-left: 30px;
  }
 


  .appraisal-message {
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
  }
  
  .appraisal-message.error {
    background-color: #ffe6e6;
    color: #cc0000;
    border-left: 4px solid #cc0000;
  }
  
  .appraisal-message.success {
    background-color: #e6ffec;
    color: #2e7d32;
    border-left: 4px solid #2e7d32;
  }
  /* Woocommerce */
  .woocommerce-MyAccount-content:has(.table-container) {
    width: 100% !important;
}
  /* Table UI */
  .table-container{
    overflow: auto;
  }
    
  .styled-table thead {
    background-color: rgba(65, 206, 177, 0.2);
  }
  
  .styled-table th, .styled-table td {
    font-size: 16px !important;
    /* min-width: 250px; */
  }
  .styled-table td{
    color: #334f6e;
  }
  .styled-table ol{
    margin: 0px;
  }
  
  .styled-table tbody tr {
    border-top: 1px solid #ddd;
  }
  
  .styled-table tbody tr:nth-child(even) {
    background-color: #fafafa;
  }
  .styled-table tbody tr:nth-child(odd) {
    background-color: #fff!important;
  }
  .styled-table td::after, .styled-table th::after {
    border: none !important;
}
  