body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: black;
    color: lightblue
}

/* Define styles for the container */
.container {
  max-width: 800px;
  margin: 20px auto;
  background-color: #333; /* Set background color for the container */
  padding: 20px;
  border-radius: 10px; /* Add rounded corners to the container */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Add a shadow effect */
}

/* Define styles for the table */
table {
  width: 100%;
  border-collapse: collapse;
  background-color: #444; /* Set background color for the table */
  border-radius: 5px; /* Add rounded corners to the table */
}

th, td {
  padding: 10px;
  border-bottom: 1px solid #666; /* Set border color for table rows */
}

tr:hover {
  background-color: #555; /* Change background color on hover */
  cursor: pointer;
}

