/*table css*/

  
.table-wrapper {
  width: 100%;
  overflow-x: visible;
 
}


table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  color: #333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  
}

 /*Table header styles */
thead {
  background-color: #2c517a;
  text-align: left;
}

thead th {
  padding: 15px !important;
  font-weight: bold;
  color: white;
  border-bottom: 2px solid #ddd;
  border-right: 1px solid #ddd;
}

 /*Table body styles */
tbody tr {
  background-color: #fff;
  transition: background-color 0.3s ease;
}

tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

tbody tr:hover {
  background-color: #f1f1f1;
}

.bg-lightgray, .bg-lightgray:hover {
  background: lightgray !important;
}

tbody td, tbody th, tfoot td,tfoot th {
  padding: 12px 15px !important;
  border-bottom: 1px solid #ddd; 
  border-right: 1px solid #ddd;
}

 /*Table footer styles */
tfoot {
  background-color: #f7f7f7;
  text-align: right;
}

tfoot td, tfoot th {
  padding: 12px 15px !important;
  border-top: 2px solid #ddd;
}

 /*Text alignment */
th, td {
  text-align: left;
  vertical-align: middle;
}

td {
  font-size: 14px;
}

  @media screen and (max-width: 1100px) {
      .table-wrapper {
        width: 100%; 
        overflow-x: auto; 
      }
    }
