body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 20px;
  background-color: #f8f9fa;
  color: #222;
  line-height: 1.6;
}

.email-sample {
  margin-bottom: 2em;
  border: 1px solid #ccc;
  padding: 20px;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.subject {
  font-weight: bold;
  font-size: 1.1em;
  color: #2a7ae2;
  margin-bottom: 10px;
}

.body {
  font-size: 0.95em;
  color: #444;
}

.body pre {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.95em;
  white-space: pre-wrap;
  word-wrap: break-word;
  margin: 0;
  background-color: #f9f9f9;
  padding: 12px 16px;
  border-left: 4px solid #2a7ae2;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

hr.email-divider {
  border: none;
  border-top: 2px solid #ddd;
  margin: 2em 0;
}

/* Table styles for 4th email */
table {
  width: 100%;
  border-collapse: separate; /* Changed to separate to allow distinct outer border */
  border-spacing: 0; /* Removes space between cells */
  margin-top: 10px;
  margin-bottom: 10px;
  border: 2px solid #666; /* Clearer outer border for the table itself */
  border-radius: 4px;
  overflow: hidden; /* Ensures border-radius applies to the table */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: add a subtle shadow for depth */
}

th,
td {
  border: 1px solid #bbb; /* Inner cell borders */
  padding: 8px;
  text-align: left;
}

th {
  background-color: #eaeaea;
  font-weight: 600;
}

td {
  background-color: #fff;
}
