/* Set the background color and font color for the whole page */
body {
  background-color: #000000; /* Set the background to black */
  color: #f8f8f8; /* Light text for contrast */
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  margin: 0;
  padding: 0;
}

/* Set the color and size for all headings */
h1 {
  color: #ffffff; /* White heading */
  font-size: 32px;
  margin-top: 20px;
  text-align: center;
}

/* Style the table */
table {
  margin-top: 20px;
  border-collapse: collapse;
  width: 100%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2); /* Light shadow for a sleek effect */
  background: linear-gradient(to bottom, #333333, #000000); /* Black gradient for the table background */
}

table caption {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 10px;
  text-align: center;
  color: #f8f8f8; /* Light color for the caption */
}

table th,
table td {
  border: 1px solid #555555; /* Darker borders to match the black theme */
  padding: 8px;
  text-align: left;
  background-color: #1a1a1a; /* Dark background for cells */
  color: #f8f8f8; /* Light text color */
}

/* Add color and shadow to table cells on hover */
table td:hover {
  background-color: #2a2a2a; /* Slightly lighter shade on hover */
  box-shadow: 2px 2px 5px rgba(255, 255, 255, 0.1); /* Light shadow effect on hover */
}

/* Set the color for table headings */
table th {
  background-color: #444444; /* Dark gray for table headers */
  color: #ffffff;
}

/* Set the color for table caption */
table caption {
  color: #f8f8f8;
}

/* Set the color for table row headings */
table th:first-child {
  background-color: #222222; /* Slightly darker for the first column */
  color: #ffffff;
}

/* Add a border-radius to the table */
table {
  border-radius: 5px;
}
