/* BillKarma - Minimal custom styles */

/* Toast notifications */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 60;
  padding: 10px 16px;
  border-radius: 6px;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transform: translateY(60px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-success { background: #0f766e; }
.toast-error   { background: #b91c1c; }
.toast-info    { background: #1e40af; }

/* Print styles */
@media print {
  header, footer, .toast, button:not(.print-visible) {
    display: none !important;
  }

  body {
    background: #fff !important;
    color: #000 !important;
    font-size: 11pt;
  }

  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #6b7280;
  }

  @page {
    margin: 1.5cm;
  }
}

/* Small screen toast */
@media (max-width: 640px) {
  .toast {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}
