/* Global styles */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #333333;
}

/* Header with optional rotation.  The transform origin is centred by default. */
.header {
  text-align: center;
  margin-bottom: 20px;
  padding: 10px;
  transition: transform 0.2s ease-in-out;
}

.image-wrapper {
  width: 100%;
  overflow: hidden;
}

.big-image {
  width: 100%;
  height: auto;
}

.big-headline {
  font-size: 2.2em;
  margin: 10px 0 0 0;
  font-weight: bold;
}

.report-title {
  font-size: 3em;
  margin: 5px 0;
  letter-spacing: 2px;
}

/* Main container */
.container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

/* Headlines list */
.headlines-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.headline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 4px;
  border-bottom: 1px solid #e0e0e0;
}

.headline-item:last-child {
  border-bottom: none;
}

.headline-text {
  flex: 1;
  margin-right: 10px;
  font-size: 1em;
}

.headline-timestamp {
  font-size: 0.5em;
  color: #777777;
}

/* Highlighted headlines appear in red */
.highlight .headline-text {
  color: #c10000;
  font-weight: bold;
}

/* Simple responsive adjustments */
@media (max-width: 600px) {
  .big-headline {
    font-size: 1.6em;
  }
  .report-title {
    font-size: 2em;
  }
  .headline-text {
    font-size: 0.9em;
  }
}
