body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.details {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
  color: #333;
  margin-bottom: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table td, table th {
  padding: 10px;
  border: 1px solid #ddd;
}

table th {
  background-color: #f2f2f2;
  text-align: left;
}

table td {
  background-color: #fff;
}

table tr:nth-child(even) td {
  background-color: #f9f9f9;
}

table tr:hover td {
  background-color: #f0f0f0;
}

table tr:first-child th:first-child,
table tr:first-child td:first-child {
  border-top-left-radius: 5px;
}

table tr:first-child th:last-child,
table tr:first-child td:last-child {
  border-top-right-radius: 5px;
}

table tr:last-child th:first-child,
table tr:last-child td:first-child {
  border-bottom-left-radius: 5px;
}

table tr:last-child th:last-child,
table tr:last-child td:last-child {
  border-bottom-right-radius: 5px;
}
