/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

.anchor-menu {
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 12px;
  max-width: 320px;
  margin: 0 auto 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.anchor-menu a {
  display: block;
  padding: 12px 15px;
  margin-bottom: 10px;
  background-color: #ffffff;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
}

.anchor-menu a:hover {
  background-color: #007bff;
  color: white;
}

  .source-section {
    margin-bottom: 2em;
  }

  .source-section h3 {
    border-left: 5px solid #0073aa;
    padding-left: 10px;
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #333;
  }

  .source-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }

  .source-list li {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
  }

  .source-list a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
  }

  .source-list a:hover {
    color: #0073aa;
  }

