body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #e0e0e0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

h1 {
  color: #fff;
  background-color: #1e90ff;
  padding: 30px;
  margin: 0;
  width: 100%;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

table {
  width: 90%;
  max-width: 1000px;
  margin-top: 30px;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

th, td {
  border-bottom: 1px solid #ddd;
  padding: 15px;
  text-align: center;
}

th {
  background-color: #1e90ff;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 2;
}

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

tr:hover {
  background-color: red;
  cursor: pointer;
}

@media (max-width: 600px) {
  table {
    width: 100%;
    overflow-x: auto;
    display: block;
  }
}

@media print {
  body {
    background-color: #fff;
  }

  h1, table {
    box-shadow: none; /* Remove box shadows for print */
  }

  h1 {
    color: #000; /* Use black text color */
    background-color: transparent; /* Remove background color */
  }

  /* Prevent links from displaying URL */
  a[href]:after {
    content: none !important; /* Force URLs to not display */
  }
  
  /* Ensure header, footer, and specific URL elements are not displayed */
  header, footer, .source-info, .url, .link {
    display: none !important; /* Ensure these are hidden */
  }
}