/* Common styles */
.left-align {
    text-align: left;
  }
  
  .min-width-30 {
    min-width: 30px;
  }
  
  .vertical-align-top {
    vertical-align: top;
  }
  
  .padding-bottom-10 {
    padding-bottom: 10px;
  }
  
  .bold {
    font-weight: bold;
  }
  
  .center {
    text-align: center;
  }
  
  .margin-bottom-10 {
    margin-bottom: 10px;
  }
  
  .margin-bottom-20 {
    margin-bottom: 20px;
  }
  
  /* Table styles */
  .table-border-1 {
    border: 1px solid;
  }
  
  .width-93 {
    width: 93%;
  }
  
  .align-center {
    align: center;
  }
  
  /* Text styles */
  .underline {
    -webkit-text-decoration: underline;
    text-decoration: underline;
  }
  
  .red-text {
    color: red;
  }
  
  .font-size-1em {
    font-size: 1em;
  }
