/* Base font */
body {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  /* 20% smaller */
  color: #333;
  background-color: #f7f8fa;
  margin: 0;
  padding: 0;
}

/* Header */
.site-header {
  position: relative;
  /* for home icon */
  text-align: center;
  padding: 1.5rem 1rem 0.75rem 1rem;
  /* shorter header */
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  overflow: visible;
}

.site-header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  /* 20% smaller */
  margin-bottom: 0.5rem;
}

.site-header p {
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.0;
}

/* Home icon */
.header-home-link {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-size: 1.6rem;
  color: #9b1717;
  text-decoration: none;
}

.header-home-link:hover {
  color: #007bff;
}

/* Body */
.site-body {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}

/* Card container */
.single-card-container {
  width: 80%;
  max-width: 900px;
}

/* Data card */
.data-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-size: 0.8rem;
  position: relative;
}

/* Card header */
.data-card h3 {
  font-size: 1.2rem;
  /* reduced 20% */
  margin: 0 0 0.5rem 0;
  display: inline-block;
}

/* Table */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.8rem;
}

td,
th {
  padding: 0.4rem 0.6rem;
  border: 1px solid #ddd;
  vertical-align: top;
}

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

/* Icons */
.icon {
  margin-right: 0.4rem;
  color: #007bff;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 1rem;
  background-color: #fff;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05);
}

.site-footer p {
  margin: 0;
  font-size: 0.7rem;
  color: #666;
}