a {
    padding: 5px 10px;
    text-decoration: none;
}

.link-row {
  border: 1px solid #dee2e6;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  background-color: #f8f9fa;
  transition: background-color 0.3s ease;
  display: none; /* Initially hidden */
}
.link-row.show {
  display: block; /* Shown when toggled */
}
.link-title {
  font-weight: bold;
  margin-bottom: 5px;
}
.link-url {
  color: #007bff;
  text-decoration: none;
}
.link-url:hover {
  text-decoration: underline;
}