/* Reset and base styles */
body {
  margin: 0;
  padding: 2rem;
  font-family: 'Courier New', monospace;
  background-color: #0b0b0b;
  color: #00ffe0;
  background-image: linear-gradient(to bottom, #0b0b0b 96%, #101010 100%);
  background-size: 100% 4px;
  background-repeat: repeat-y;
}

/* Headings */
h1, h2, h3 {
  color: #ff00c8;
  text-shadow: 0 0 3px #ff00c8;
  margin-bottom: 0.5rem;
}

/* Log entries */
.log-entry {
  border-left: 4px solid #00ffe0;
  padding-left: 1rem;
  margin-bottom: 2rem;
  background-color: #111111;
  padding: 1rem;
}

/* Timestamps */
.timestamp {
  color: #999;
  font-size: 0.9rem;
  font-style: italic;
}

/* Alerts */
.alert {
  color: #ff0059;
  font-weight: bold;
  text-shadow: 0 0 3px #ff0059;
}

/* Links */
a {
  color: #00ffea;
  text-decoration: none;
  border-bottom: 1px dotted #00ffea;
}
a:hover {
  color: #ffffff;
  background-color: #00ffea;
  border-bottom: 1px solid #00ffea;
}

/* Footer / metadata */
footer {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #777;
  border-top: 1px solid #333;
  padding-top: 1rem;
}
