* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html,
  body {
    height: 100%;
  }
  
  body {
    color: #333;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    background-color: #c9e4eb;
  }
  
  table.customTable {
    width: 90%;
    background-color: #FFFFFF;
    border-collapse: collapse;
    border-width: 1px;
    border-color: #D9E3DC;
    border-style: solid;
    color: #000000;
  
  }
  
  table.customTable thead {
    background-color: #ABBCC2;
  }
  
  table.customTable td, table th {
    border-width: 1px;
    border-color: #D9E3DC;
    border-style: solid;
    padding: 5px;
    margin: 15px;
  }
  
  h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
      margin-top: 0;
      margin-bottom: 0;
  }
  
  main {
    flex: 1 0 auto;
  }
  
  /* Create two unequal columns that floats next to each other */
  .column {
    float: left;    
  }
  
  .leftSide {
    width: 65%;
    padding-top: 25px;
    padding-left: 15%;
    
  }
  
  .rightSide {
    width: 35%;
    padding-top: 25px;
    padding-left: 1%;
    padding-right: 15%;
  }
  
  /* Clear floats after the columns */
  .container:after {
    content: "";
    display: table;
    clear: both;
  }

  .contentMain{
    border-style: solid;
    border-width: 1px;
    padding: 15px;
    border-radius: 7px;
    border-color: #c9e4eb;
    background-color: #ffffff;
    margin-bottom: 5px;
  }

  table.tblReply {
    width: 100%;
    background-color: #FFFFFF;
    border-collapse: collapse;
    border-width: 0px;
    border-color: #D9E3DC;
    border-style: solid;
    color: #000000;
  
  }
  
  table.tblReply thead {
    background-color: #ABBCC2;
  }

 
  
  table.tblReply td, table th {
    border-width: 0px;
    border-color: #D9E3DC;
    border-style: solid;
    padding: 15px;
    
  }
  
  .columnReplyContentLeft{
    vertical-align: top;
  }

  .columnReplyContent{
    border-style: solid;
    border-width: 1px;
    padding: 25px;
    border-radius: 5px;
    border-color: #bfcfd3;
    background-color: #ffffff;
  }

  

  .button {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
  }
  
  .button1 {
    background-color: white; 
    color: black; 
    border: 2px solid #4CAF50;
  }
  
  .button1:hover {
    background-color: #4CAF50;
    color: white;
  }
  
  .button2 {
    background-color: white; 
    color: black; 
    border: 2px solid #008CBA;
  }
  
  .button2:hover {
    background-color: #008CBA;
    color: white;
  }
  
  .button3 {
    background-color: white; 
    color: black; 
    border: 2px solid #f44336;
  }
  
  .button3:hover {
    background-color: #f44336;
    color: white;
  }
  
  .button4 {
    background-color: white;
    color: black;
    border: 2px solid #e7e7e7;
  }
  
  .button4:hover {background-color: #e7e7e7;}
  
  .button5 {
    background-color: white;
    color: black;
    border: 2px solid #555555;
  }
  
  .button5:hover {
    background-color: #555555;
    color: white;
  }