pre {
  width: 100%;
  max-width: none;
  overflow-x: auto;
  box-sizing: border-box;
}

body {
  margin: 0;
}

main {
  width: 100%;
  max-width: none;
}

.link-status {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  font-family: monospace;
  background-color: #f9f9f9;
  border-left: 4px solid #ccc;
  padding: 0.75em 1em;
  margin: 1em 0;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.link-status > strong:first-child {
  background-color: #eee;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: bold;
}

.link-status.active {
  border-color: #4caf50;
  color: #2e7d32;
  background-color: #e8f5e9;
}

.link-status.inactive {
  border-color: #f44336;
  color: #c62828;
  background-color: #ffebee;
}

.link-status.unknown {
  border-color: #9e9e9e;
  color: #616161;
}

.link-status:hover {
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

@keyframes pulse {
  0% { border-left-color: #ccc; }
  50% { border-left-color: #ff9800; }
  100% { border-left-color: #ccc; }
}

.link-status.flapping {
  animation: pulse 1s infinite;
}

