.container {
  max-width: 800px;
  margin: 2rem auto;
  font-family: sans-serif;
}

.report-section {
  margin-bottom: 3rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 2rem;
}

.columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

h2 {
  margin-top: 0;
}

.expanded-panel {
  margin-top: 1rem;
  padding: 1rem;
  background-color: #f0f9ff;
  border-left: 4px solid #007acc;
  animation: slideDown 0.3s ease forwards;
}

.hidden {
  display: none;
}

@keyframes slideDown {
  from {
    max-height: 0;
    opacity: 0;
  }
  to {
    max-height: 1500px;
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .columns {
    grid-template-columns: 1fr;
  }
}
.global-header {
  max-width: 800px;
  margin: 1rem auto 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

#expand-all-btn {
  background-color: #333;
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}