table {
  width: 100%;
  border-collapse: collapse; /* Collapses borders between cells */
  background:white;
}

th, td {
  padding: 8px; /* Padding inside cells */
  text-align: left; /* Aligns text to the left */
  color: black;
}

th {
  background-color: #07acff;
  color: white;
}

tr:nth-child(even) {
  background-color: #f9f9f9; /* Alternating row background color */
}


/* Apply border-radius to specific corners of the table */
table tr:first-child th:first-child {
  border-top-left-radius: 10px;
  
}

table tr:first-child th:last-child {
  border-top-right-radius: 10px;
  
}

table tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
   
}

table tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
   
}