<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.link-container {
  display: inline-flex;
  flex-direction: column; 
  justify-content: left;
  gap: 10px;
  margin-top: 10px;
}

.nav-link {
  padding: 12px 14px;
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  transition: background-color 0.3s ease;
}

.nav-link:hover {
  background-color: #0056b3;
}

</pre></body></html>