.cada-table .header {
    background-color: #002855;
    color: #ffffff;
    font-style: normal;
}

thead.header th {
    font-weight: normal;
}

.cada-table.table-striped>tbody>tr:nth-child(odd){
   background-color: #00a3e0;
   color: #ffffff;
}

.cada-table.table-striped>tbody>tr:nth-child(even){
   background-color: #0072ce;
   color: #ffffff;
}


.cada-table.table > tbody > tr > td {
    border: none;
}

.cada-table.table > thead > tr > th {
    border: none;
}

@media (max-width: 767px) { 
    
  .cada-data-table-holder {
    display: none; /* Hide the table on smaller screens */
  }
  
  .cada-data-list-holder {
    display: block;
  }
  
}

@media (min-width: 767px) { 
  .cada-data-table-holder {
    display: block; 
  }
  
  .cada-data-list-holder {
    display: none; /* Hide the list on larger screens */
  }
  
}

.cada-data-list-item {
    padding: 15px;
    font-size: 20px;
    line-height: 40px;
}

.cada-data-list-holder>div:nth-child(odd){
   background-color: #00a3e0;
   color: #ffffff;
}

.cada-data-list-holder>div:nth-child(even){
   background-color: #0072ce;
   color: #ffffff;
}