/* bottom-bar.css — Always at page bottom or below content */
.footer-bar {
  width: 100%;
  text-align: center;
  padding: 8px 12px;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,.40) 100%
  );
  font-size: 12px;
  color: #ccc;
  white-space: nowrap;
  margin-top: auto;  /* Key for flexbox sticky footer */
}
.footer-bar a {
  color: inherit;
  text-decoration: none;
}
