/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  background-color: #000000;
  color: #ffffff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  line-height: 1.6;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.container {
  max-width: 600px;
  padding: 40px 20px;
  text-align: center;
}

h1 {
  font-size: 12px;
  margin-bottom: 2em;
  text-transform: lowercase;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.transmissions {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.transmission {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  color: #ffffff;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.transmission:hover {
  opacity: 1;
}

.trans-name {
  text-align: left;
  margin-right: 20px; /* Add this line only */
}

.trans-date {
  text-align: right;
  opacity: 0.5;
}

.transmission-text {
  text-align: left;
  white-space: pre-line;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
  color: #ffffff;
}