 
/*################# part 1 Styled Table #####################################*/
        
   .styled-table {
        border-color: white;
    border-width: 0px;
    border-style: none;
    width: 100%;
    border-collapse: collapse;
        font-size: 1.3rem;
            font-family: Roboto, arial, sans-serif;
            
       /* tried */
        border: 1px solid black;
     
    
        border-style: hidden; /* hide standard table (collapsed) border */
       /* box-shadow: 0 0 0 1px #666; /* this draws the table border  */ 
            box-shadow: 0 0 0 1px #7a91a757;     
           /* tried */ 
            
} 

.styled-table tbody {
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}

        
    .styled-table thead tr {
    background-color: #dddddd;
    color: #8c8c8c;
    text-align: left;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f0f0f0;
}

.styled-table  th  {
    font-weight: bold;
    background-color: #DDDDDD;
    border-style: none;
    text-align: left;
  /*  white-space: nowrap;*/
    height: 30px;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 5px;
    padding-bottom: 5px;
    color: #073E7B;
    border: none;  
    
    text-decoration: none;
    font-weight: bold;
    
   /* font-size:90%; /* test on 25/7/24 */
   
         
            
    
    
    
}


.styled-table td  {
    border-style: none;
    border-width: 0;
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 1px;
    padding-top: 1px;
    margin: 0;
    height:35px;
   /* white-space: nowrap; */
    display: table-cell;
     
     font-size:90%; /* test on 25/7/24 */
    
}   
 
 .styled-table tbody tr:last-of-type {
    border-bottom: 1px solid #f0f0f0;
}       
        
/*################# end part 1 Styled Table #####################################*/     



/*################# part 2 Responsive Table #####################################*/


   
.responsive-table {
   /* width: 600px;*/
    border-collapse: collapse;
    margin: 20px 0;
    padding: 5px;
    background-color: #f0f0f0;
    font-size: 1.2rem;
    font-family: Roboto, arial, sans-serif;
    font-weight: 700;
    
    
     

}

.responsive-table th, .responsive-table td {
   /* border: 1px solid #ddd; */
    padding: 10px 10px 10px 15px;
    text-align: left;
}

.responsive-table th {
    /*background-color: #DDDDDD;*/
    font-size: 3rem; color:#1158a6;
   /* padding-top: 25px ; */
}
  
 @media screen and (min-width: 600px)  {
     
     .responsive-table {
    width: 600px;
     }
     
     .container2 {
         
         padding:10px;
         
         width:700px;
         
     }
     
      .mycenter{ text-align:center;}
 }
     
@media (max-width: 600px) {
    
       input[type=text],input[type=password], select, textarea {
         width:100%;
        }
      
      
      .mycenter .btn{ text-align:left;}
    
     .container2 {
      width: 100%;
      padding: 5px;
        }
    
    .responsive-table, .responsive-table thead, .responsive-table tbody, .responsive-table th, .responsive-table td, .responsive-table tr {
        display: block;
        width: 100%;
    }

    .responsive-table thead tr {
        display: none;
    }

    .responsive-table tr {
     /*   margin-bottom: 15px;*/
    }

    .responsive-table td {
        display: block;
        text-align: left;
        padding: 5px 10px 5px 15px;
        position: relative;
        
        border-style: none;
        border-width: 0;

    }

    .responsive-table td::before {
        content: attr(data-title);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 2rem;
        font-weight: bold;
        text-align: left;
    }
}

/*################# End part 2 Responsive Table #####################################*/        


/*################# part 3 Individual #####################################*/
        
.container2 {
  border-radius: 5px;
  background-color: #f2f2f2;
 

    border: 1px solid black;
     
    
        border-style: hidden;  
        
            box-shadow: 0 0 0 1px #7a91a757;

}
 
 
@media screen and (min-width: 600px)  {
        .for-mobile { display: none; }  
}

.mytitle {
    color: #000;
    font-size: 110%;
    margin-top:10px;
   
}    
 
 
/*################# End part 3 Individual #####################################*/

input[type=text],input[type=password], select, textarea {
  max-width:275px;   /* added on 26/7/24  */
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}      
        
    