.footer-right {
    position: fixed;
    bottom: 0;
    right: 0;
    text-align: right;
    padding: 10px;
    font-size: 0.8em;
    background-color: rgba(255, 255, 255, 0.9); /* Optional: To add some transparency */
  }
  
  .footer-right a {
    color: #333; /* Adjust link color */
    text-decoration: none;
  }
  
  .footer-right a:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
    .footer-right {
      font-size: 0.7em;
      padding: 5px;
    }
  }
  