body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  background-color: #f9f9f9;
  color: #333;
  margin: 0;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.containerh {
  padding: 5px 20px; /* Adjusted padding for mobile */
  background-color: var(--container-bg);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}
h1 {
  text-align: left; /* ADD this */
  color: var(--text-color);
  font-weight: 500; /* Slightly bolder main title */
  font-size: 1.7em;
  line-height: 1.3; /* Adjust line height if needed */
  margin: 0.5em 0;
  word-break: break-word; /* Prevent text overflow */
}

/* Styles for the new spans */
.h1-separator {
  font-weight: 300; /* Lighter weight for the pipe */
  color: #555; /* Use a less prominent color */
  margin: 0 0.2em; /* Add a little space around the pipe */
}

.h1-subtitle {
  font-weight: 300; /* Lighter weight for the subtitle */
  color: #555; /* Match separator or use main text color */
  /* color: var(--text-color); */ /* Alternative: Keep main color but lighter weight */
}

.h1-link {
  color: inherit; /* Make the link inherit the H1's text color */
  text-decoration: none; /* Remove the default underline */
  transition: color 0.2s ease; /* Add smooth transition for hover */
  padding: 8px 12px; /* Larger touch target */
  margin: -8px -12px; /* Offset padding to maintain layout */
  display: inline-block;
  min-height: 44px; /* Minimum touch target size */
  line-height: 44px;
}

.h1-link:hover {
  color: #0077cc; /* Change color on hover (optional, use var(--text-color) to keep it same) */
  /* text-decoration: underline; */ /* Optionally add underline on hover */
}

.report-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  padding: 0;
  margin: 0;
}

.report-card {
  background-color: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  padding: 25px;
  text-align: center; /* Text centered horizontally */
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center flex items (the h3) horizontally */
  justify-content: center; /* Center flex items (the h3) vertically */
  min-height: 120px;
}

.report-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border-color: #a0d2eb;
}

.report-card h3 {
  font-size: 1.2em;
  font-weight: 500;
  color: #34495e;
  margin: 0; /* Remove bottom margin if title is the only element */
  line-height: 1.4;
}

/* REMOVED .report-card .card-arrow and .report-card:hover .card-arrow styles */

.zen-footer {
  text-align: center;
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid #eee;
  font-size: 0.9em;
  color: #95a5a6;
}

.no-reports-message {
  text-align: center;
  padding: 40px 0;
  font-size: 1.1em;
  color: #7f8c8d;
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  body {
    padding: 20px 10px;
  }
  .container {
    padding: 30px;
  }
  .report-grid-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  .report-card {
    padding: 20px;
    min-height: 100px;
  }
  .report-card h3 {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 20px;
  }
  .report-grid-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .zen-header h1 {
    font-size: 1.8em;
  }
  .report-card h3 {
    font-size: 1.05em;
  }
}
