/* Auto-split from styles.css – do not edit styles.css directly, edit this file instead */

.app-footer {
  margin-top: 28px;
  padding: 18px 4px 0;
  border-top: 1px solid rgba(164, 120, 86, 0.22);
}
.app-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.app-footer-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-export-button {
  min-width: 0;
  padding: 6px 12px;
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
.floating-bulk-actions-bar {
  position: fixed;
  top: calc(var(--topbar-h, 56px) + 8px);
  left: 12px;
  right: 12px;
  z-index: 290;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 249, 243, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 32px rgba(77, 45, 23, 0.18);
  animation: floating-bar-in 160ms ease-out;
}
@keyframes floating-bar-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (min-width: 701px) {
  .floating-bulk-actions-bar {
    left: calc(var(--page-side) + var(--sidebar-w) + 32px);
    right: calc(var(--page-side) + 36px);
  }
}
.floating-bulk-actions-bar[hidden] {
  display: none !important;
}
body.dark-mode .floating-bulk-actions-bar {
  background: rgba(34, 30, 29, 0.92);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}
body.dark-mode .auth-user-name,
body.dark-mode .auth-logout-button {
  color: #f4d5bd;
}
body.dark-mode .auth-user-popover {
  border-color: rgba(211, 194, 168, 0.22);
  background: color-mix(in srgb, var(--panel) 92%, #fff 8%);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.3);
}
body.dark-mode .auth-user-popover::before {
  border-top-color: rgba(211, 194, 168, 0.22);
  border-left-color: rgba(211, 194, 168, 0.22);
}
body.mint-mode .auth-user-name,
body.mint-mode .auth-logout-button {
  color: #2f5f4d;
}
.scroll-buttons-stack {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 85;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.scroll-top-button,
.scroll-bottom-button {
  width: 40px;
  height: 40px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(164, 120, 86, 0.24);
  background: rgba(255, 249, 243, 0.72);
  color: var(--accent-dark);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(77, 45, 23, 0.14);
  opacity: 0.88;
  transition: opacity 0.12s;
}
.scroll-top-button::before {
  content: "\2191";
  font-size: 0.95rem;
  line-height: 1;
}
.scroll-bottom-button::before {
  content: "\2193";
  font-size: 0.95rem;
  line-height: 1;
}
.scroll-top-button:hover,
.scroll-bottom-button:hover {
  opacity: 1;
}
.scroll-top-button[hidden],
.scroll-bottom-button[hidden] {
  display: none !important;
}
body.dark-mode .scroll-top-button,
body.dark-mode .scroll-bottom-button {
  background: rgba(34, 30, 29, 0.72);
  color: #f4d5bd;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}
body.mint-mode .scroll-top-button,
body.mint-mode .scroll-bottom-button {
  background: rgba(248, 255, 251, 0.74);
  color: #2f5f4d;
  box-shadow: 0 8px 20px rgba(50, 101, 80, 0.16);
}
.app-footer p {
  margin: 0;
  font-size: 0.92rem;
  font-family: "Roboto", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}
.app-footer a {
  color: var(--good);
  text-decoration: underline;
}
.app-footer a:hover {
  color: var(--good);
}
.dev-short { display: none; }
@media (max-width: 700px) {
  .footer-brand { display: none; }
  .dev-full { display: none; }
  .dev-short { display: inline; }
}
