/* General link styling */
a {
    text-decoration: none; 
    color: #fd61db; 
    font-weight: bold; 
    transition: color 0.3s ease, background-color 0.3s ease;
  }
  
 
  a:hover {
    color: #f69af8;
    background-color: #e9ecef; 
    text-decoration: underline;
  }
  
 
  a:visited {
    color: #6c757d;
  

  a:active {
    color: #005079; 
  }
  

  .link-container {
    display: flex; 
    gap: 10px; 
    flex-wrap: wrap; 
    padding: 10px; 
    background-color: #f8f9fa;
    border: 1px solid #dee2e6; 
    border-radius: 5px; 
  }

.link-button {
    display: inline-block;
    padding: 10px 15px;
    color: #fff;
    background-color: #992e95;
    border: none;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    transition: background-color 0.3s ease;
  }
  
  .link-button:hover {
    background-color: #f2baf1;
    text-decoration: none;
  }
  
  .link-button:active {
    background-color: #7e0085;
  }
  