#notification-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 1rem 1.5rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  max-width: 400px;
  margin: auto;
  border: 0.1px solid var(--text-disabled);
  border-radius: 6px 6px 0 0;
}
#notification-banner p {
  margin: 0;
  font-size: 1rem;
  margin-bottom: 16px;
}
#notification-banner .actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-left: auto;
  margin-right: 0;
}
#notification-banner .actions button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
}
#notification-banner .actions button:last-child {
  background-color: var(--primary);
  color: var(--text-light);
}
#notification-banner .actions button:last-child:hover {
  background-color: var(--primary-dark);
}
#notification-banner .actions button:first-child {
  background-color: transparent;
  color: var(--text-muted);
}
#notification-banner .actions button:first-child:hover {
  color: var(--text-light);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-dark2);
  color: var(--text-muted);
  padding: 14px 20px;
  font-size: 14px;
  border-top: 1px solid var(--bg-dark3);
}
.site-footer a {
  color: var(--text-muted);
  margin-left: 20px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer a:hover {
  color: var(--primary);
}
.site-footer .footer-left,
.site-footer .footer-right {
  display: flex;
  align-items: center;
  text-align: center;
}
.site-footer .footer-left img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-right: 8px;
}
.site-footer .footer-left span {
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .site-footer {
    flex-direction: column;
    gap: 12px;
  }
  .site-footer .footer-left {
    padding-top: 10px;
  }
  .site-footer .footer-left img {
    display: none;
  }
  .site-footer .footer-right {
    padding-bottom: 10px;
    line-height: 24px;
  }
  .site-footer .footer-right a:first-of-type {
    margin-left: 0;
  }
}

/*# sourceMappingURL=footer.css.map */
