@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@300;400;600;700&display=swap');

:root {
  --bg: #0b1020;
  --bg-alt: #0f172a;
  --card: rgba(16, 22, 40, 0.92);
  --card-border: rgba(148, 163, 184, 0.2);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --primary: #38bdf8;
  --secondary: #f472b6;
  --accent: #a78bfa;
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.4);
  --brand-blue: var(--primary);
  --brand-green: var(--success);

  --brand-grad: linear-gradient(90deg, var(--brand-blue), var(--brand-green));
  --brand-grad-hover: linear-gradient(90deg, rgba(56,189,248,0.95), rgba(34,197,94,0.95));

  /* softened glow */
  --brand-glow: 
    0 0 6px rgba(56,189,248,0.18),
    0 0 6px rgba(34,197,94,0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Libre Franklin', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 50%),
    radial-gradient(circle at bottom right, rgba(244, 114, 182, 0.15), transparent 45%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  
}



/* ================= HEADER ================= */

.site-header {
  
  align-items: center;
  justify-content: space-between;
  padding: 4px 10px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  background: rgba(7, 10, 20, 0.6);
  backdrop-filter: blur(10px);
padding-top: env(safe-area-inset-top);
padding-top: 8px;
  
}

/* Brand container now supports logo + text */
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

/* Logo */
.brand-logo {
  height: 150px;
  width: auto;
  flex-shrink: 0;
}

/* Text stack */
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-mark {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

.brand-title {
  font-size: 18px;
  font-weight: 700;
}

.brand-datetime {
  font-size: 12px;
  margin-top: 4px;
  font-weight: 700;
  letter-spacing: 0.4px;

  background: linear-gradient(270deg, #38bdf8, #22c55e, #38bdf8);
  background-size: 400% 400%;
  animation: gradientShift 6s ease infinite;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* ================= CLOCK ================= */

.datetime-date,
.datetime-time {
  display: inline-flex;
  align-items: center;
}

.digit {
  display: inline-block;
  position: relative;
  height: 1em;
  overflow: hidden;
  min-width: 0.6ch;
  perspective: 600px;
}

.digit-stack {
  display: block;
  position: relative;
  height: 1em;
}

.digit-now,
.digit-next {
  display: block;
  height: 1em;
  line-height: 1em;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.digit-next {
  position: absolute;
  left: 0;
  top: 0;
  transform: rotateX(90deg);
  transform-origin: top;
}

.digit-now {
  transform: rotateX(0deg);
  transform-origin: bottom;
}

.digit.roll .digit-now {
  animation: flipNow 0.45s ease forwards;
}

.digit.roll .digit-next {
  animation: flipNext 0.45s ease forwards;
}

.time-literal {
  display: inline-block;
  min-width: 0.4ch;
}

@keyframes flipNow {
  from { transform: rotateX(0deg); }
  to { transform: rotateX(-90deg); }
}

@keyframes flipNext {
  from { transform: rotateX(90deg); }
  to { transform: rotateX(0deg); }
}

/* ================= NAV ================= */

.nav a {
  color: var(--text);
  text-decoration: none;
  margin-left: 16px;
  font-weight: 500;
}

.nav a:hover {
  color: var(--primary);
}

/* ================= LAYOUT ================= */

.container {
  padding: 32px 40px 80px;
  display: grid;
  gap: 24px;
}

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 10px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
/*margin-bottom: 50px; */
}

.card::before {
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 25%, rgba(56, 189, 248, 0.07), transparent 45%),
    radial-gradient(circle at 80% 75%, rgba(34, 197, 94, 0.06), transparent 45%);
  opacity: 100;
  transform: translate3d(0, 0, 0) scale(1);
  animation: cardGlowDrift 14s ease-in-out infinite;
}

@keyframes cardGlowDrift {
  0% { transform: translate3d(-1.5%, -1%, 0) scale(1); }
  50% { transform: translate3d(1.5%, 1%, 0) scale(1.03); }
  100% { transform: translate3d(-1.5%, -1%, 0) scale(1); }
}

.card-header{
  display: flex;
  align-items: center;
  gap: 2px;
}

.card-header h2{
  margin: 0;
}

.card-header .add-puppy-btn--sm{
  margin-left: auto;     /* forces it to the far right */
  flex: 0 0 auto;
  white-space: nowrap;
}



.hero {
  text-align: center;
  padding: 20px 10px;
}

/* Hero image */
.hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: .75rem auto 0;
  border-radius: 12px;
}

.play-store-teaser {
  margin-top: 10px;
  text-align: center;
}

.play-store-badge {
  display: inline-block;
  max-width: 187px;
  width: 100%;
  height: auto;
  margin-top: 0px;
}

/* ================= BUTTONS ================= */

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
  justify-content: center;
}

.actions.left {
  justify-content: flex-start;
}

.btn {
  padding: 6px 10px;
  border-radius: 5px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
font-size: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #04111d;
  box-shadow: 0 2px 2px rgba(56, 189, 248, 0.35);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 2px rgba(56, 189, 248, 0.45);
}
.btn.secondary {
  background: linear-gradient(
    135deg,
    rgba(167, 139, 250, 0.9),
    rgba(244, 114, 182, 0.9)
  );
  color: #12091a;
  box-shadow: 0 2px 2px rgba(167, 139, 250, 0.35);
}

.btn.secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 2px rgba(167, 139, 250, 0.45);
}

.btn.ghost {
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.35);
  color: var(--text);
  backdrop-filter: blur(2px);
}

.btn.ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn.danger {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.9),
    rgba(127, 29, 29, 0.9)
  );
  color: #fff;
  box-shadow: 0 2px 2px rgba(239, 68, 68, 0.35);
}

.btn.danger:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 2px rgba(239, 68, 68, 0.45);
}

/* ================= FORMS ================= */

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 600;
}

input, select, textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(15, 23, 42, 0.7);
  color: var(--text);
}

textarea {
  resize: vertical;
}

.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}

.channel-slider-wrap {
  margin-bottom: 16px;
}

.channel-slider {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
}

.channel-slider input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.channel-slider label {
  display: block;
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  color: var(--muted);
  transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.channel-slider input[type="radio"]:checked + label {
  color: #0b1220;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.45) inset;
}

.channel-slider input[type="radio"]:disabled + label {
  opacity: 0.45;
  cursor: not-allowed;
}

/* ================= MODAL ================= */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 12, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  z-index: 1000;
}

.modal {
  width: 100%;
  max-width: 520px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.modal-backdrop[hidden] {
  display: none !important;
}

/* ================= LISTS / BADGES ================= */

/* ====== .list,
.timeline {
  display: grid;
  gap: 20px; */

  .list,
  .timeline {
    display: grid;
    gap: 50px; /* 20px vertical space between cards */
  }
 


.list-item,
.timeline-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;

  --r: 12px;
  border-radius: var(--r);
  border: 0;

  background: rgba(15, 23, 42, 0.4);
  box-shadow:
  inset 0px 0px 0 rgba(56,189,248,0.25),
  inset 1px 1px 0 rgba(34,197,94,0.18);


  overflow: hidden; /* this is the key */
}

.list-item::before,
.timeline-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;   /* top 0, left 0, bottom 0 */
  width: 2px;
  background: linear-gradient(180deg, #38bdf8, #22c55e);
  pointer-events: none;
}

.list-item::after,
.timeline-item::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;   /* top 0, left 0, right 0 */
  height: 2px;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  pointer-events: none;
}

.btn-sm {
  padding: 4px 8px;
  font-size: 11px;
}

.schedule-rollup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.schedule-rollup-head h3 {
  margin: 0;
}

.schedule-rollup-body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 260ms ease, opacity 220ms ease;
}

.schedule-rollup-body.is-open {
  max-height: 2400px;
  opacity: 1;
}

.queue-rollup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.queue-rollup-head h3 {
  margin: 0;
}

.queue-rollup-body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 260ms ease, opacity 220ms ease;
}

.queue-rollup-body.is-open {
  max-height: 2200px;
  opacity: 1;
}



.puppy-summary {
  display: flex;
  align-items: center;
  gap: 12px;
}

.puppy-thumb {
  width: 75px;
  height: 75px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.4);
}

.puppy-hero {
  width: 138px;
  height: 138px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.4);
  margin-bottom: 12px;
}

.photo-preview img {
  width: 161px;
  height: 161px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.4);
  margin: 8px 0;
}

.alert {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.6);
  margin-bottom: 16px;
  font-weight: 600;
}

.alert.success {
  border-color: rgba(34, 197, 94, 0.35);
  color: var(--success);
}

.banner-fade {
  transition: opacity 4s ease, transform 4s ease;
}

.banner-fade.fade-out {
  opacity: 0;
  transform: translateY(-6px);
}

.banner-fade.fade-hidden {
  display: none;
}

.badge {
  padding: 4px 8px;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}


.badge.completed,
.badge.status-sent {
  background: rgba(34, 197, 94, 0.2);
  color: var(--success);
}

.badge.upcoming,
.badge.status-pending {
  background: rgba(56, 189, 248, 0.2);
  color: var(--primary);
}

.badge.due {
  background: rgba(245, 158, 11, 0.2);
  color: var(--warning);
}

.badge.due-today {
  background: rgba(245, 158, 11, 0.24);
  color: var(--warning);
}

.badge.overdue,
.badge.status-failed {
  background: rgba(239, 68, 68, 0.2);
  color: var(--danger);
}

.badge.status-skipped_disabled {
  background: rgba(148, 163, 184, 0.25);
  color: #cbd5e1;
}

.badge.waiting-first-dose {
  background: rgba(148, 163, 184, 0.25);
  color: #cbd5e1;
}

.next-due {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.next-due-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.muted {
  color: var(--muted);
  font-size: 14px;
}

.guide-step-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 3px;
  margin-top: 6px;
}

.guide-steps {
  grid-auto-rows: auto;
}

.guide-steps .list-item {
  align-items: flex-start;
}

.spectra-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  grid-auto-rows: auto;
}

.spectra-products-grid .list-item {
  align-items: flex-start;
  height: 100%;
}

.spectra-product-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  height: 100%;
}

.spectra-product-coverage {
  margin-top: 0;
}

.spectra-product-image {
  max-width: 65%;
  border-radius: 12px;
}

/* ================= FOOTER ================= */

.site-footer {
  text-align: center;
  padding: 24px 16px;
  color: var(--muted);
  border-top: 1px solid rgba(148, 163, 184, 0.1);
padding-bottom: env(safe-area-inset-bottom);
}

.site-footer a {
  color: #38bdf8;
  text-decoration: none;
  background: linear-gradient(90deg, #38bdf8, #22c55e, #38bdf8);
  background-size: 220% 220%;
  animation: gradientShift 6s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow:
    0 0 6px rgba(56, 189, 248, 0.2),
    0 0 6px rgba(34, 197, 94, 0.2);
}

.site-footer a:hover {
  color: #38bdf8;
  -webkit-text-fill-color: transparent;
}

.inline-theme-link,
.inline-theme-link:visited {
  color: #38bdf8;
  text-decoration: none;
  background: linear-gradient(90deg, #38bdf8, #22c55e, #38bdf8);
  background-size: 220% 220%;
  animation: gradientShift 6s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow:
    0 0 6px rgba(56, 189, 248, 0.2),
    0 0 6px rgba(34, 197, 94, 0.2);
}

.inline-theme-link:hover,
.inline-theme-link:focus-visible {
  color: #38bdf8;
  -webkit-text-fill-color: transparent;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  row-gap: 10px;
}

.footer-sep {
  color: var(--muted);
}

.footer-note {
  font-size: 12px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .schedule-rollup-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .queue-rollup-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .brand-logo {
    height: 70px;
  }

  .brand-title {
    font-size: 15px;
  }

  .brand-datetime {
    font-size: 12px;
  }

  .nav a {
    font-size: 13px;
  }

  .container {
    padding: 24px 16px 60px;
  }

  .card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 40px 24px;
  }
}

@media (max-width: 400px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 21px;
  }

  h2 {
    font-size: 17px;
  }

  h3 {
    font-size: 15px;
  }

  .btn {
    font-size: 12px;
    padding: 7px 13px;
  }

  label {
    font-size: 13px;
  }

  .muted {
    font-size: 12px;
  }

  .badge {
    font-size: 11px;
  }

  .site-header,
  .site-footer {
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .brand-logo {
    height: 34px;
  }

  .brand-title {
    font-size: 13px;
  }

  .brand-datetime {
    font-size: 10px;
  }
}

@media print {
  body {
    background: #ffffff;
    color: #000000;
  }

  .site-header,
  .site-footer,
  .no-print,
  .nav {
    display: none !important;
  }

  .card {
    box-shadow: none;
    border: none;
  }
}
/* Puppy card layout: photo left, text right, buttons pinned to bottom left */
.puppy-card{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  justify-content:flex-start;
}

.puppy-row{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.puppy-meta{
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width:0;
}

.puppy-progress {
  margin-top: 12px;
}

.puppy-progress-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.progress-track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.25);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.95), rgba(56, 189, 248, 0.95));
  transition: width 0.25s ease;
}

.progress-checkpoints {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.progress-pill {
  font-size: 11px;
  border-radius: 999px;
  padding: 3px 8px;
  border: 1px solid transparent;
}

.progress-pill.is-complete {
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.35);
}

.progress-pill.is-pending {
  color: #cbd5e1;
  background: rgba(148, 163, 184, 0.14);
  border-color: rgba(148, 163, 184, 0.25);
}

.puppy-next-due {
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.28);
}

.puppy-next-due > div {
  margin-bottom: 4px;
}

.puppy-next-due > div:last-child {
  margin-bottom: 0;
}

.action-row {
  gap: 10px;
}

.action-row .btn {
  min-width: 170px;
}

.puppy-view-actions {
  margin-top: 8px;
}

@media (max-width: 768px) {
  .action-row {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .action-row .btn {
    width: 100%;
    min-width: 0;
  }
}

/* This pushes the buttons to the bottom of the card */
.puppy-actions{
  margin-top:auto;
  padding-top:12px;
}

/* Optional but recommended so all list cards can be same height */
.list{
  grid-auto-rows:1fr;
  margin-bottom: 16px;
}

.sent-check{
  width:15px;
  height:15px;
animation: checkPulse 1.8s ease-in-out infinite;
}
@keyframes checkPulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 2px rgba(34, 197, 94, 0.6));
    opacity: 0.9;
  }
  50% {
    transform: scale(1.08);
    filter: drop-shadow(0 0 6px rgba(34, 197, 94, 0.9));
    opacity: 1;
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 2px rgba(34, 197, 94, 0.6));
    opacity: 0.9;
  }
}
/* =========================================================
   Unified Spectra Buttons – Soft Blue → Green Glow
   ========================================================= */

.btn{
  padding: 7px 12px;
  border-radius: 10px;
  border: 1px solid rgba(148,163,184,0.25);
  text-decoration: none;
  font-weight: 700;
  font-size: 11px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease,
    border-color 0.18s ease;
}

a.btn,
a.btn:hover,
a.btn:focus,
a.btn:active{
  text-decoration: none;
  color: inherit;
}

.btn:focus-visible{
  outline: 2px solid rgba(56,189,248,0.7);
  outline-offset: 2px;
}

/* ---------------------------------------------------------
   Primary Button
   --------------------------------------------------------- */
.btn.primary{
  background: var(--brand-grad);
  color: #04111d;
  border-color: rgba(56,189,248,0.25);

  /* very subtle resting glow */
  box-shadow:
    0 0 6px rgba(56,189,248,0.18),
    0 0 6px rgba(34,197,94,0.18);
}

.btn.primary:hover{
  transform: translateY(-1px);
  background: var(--brand-grad-hover);

  /* slightly stronger, still tight glow */
  box-shadow:
    0 0 8px rgba(56,189,248,0.28),
    0 0 8px rgba(34,197,94,0.28);
}

/* ---------------------------------------------------------
   Secondary Button (same theme, calmer)
   --------------------------------------------------------- */
.btn.secondary{
  background: var(--brand-grad);
  color: #07121a;
  filter: saturate(0.92) brightness(0.97);
  border-color: rgba(34,197,94,0.22);

  box-shadow:
    0 0 5px rgba(56,189,248,0.14),
    0 0 5px rgba(34,197,94,0.14);
}

.btn.secondary:hover{
  transform: translateY(-1px);
  filter: saturate(1) brightness(1);

  box-shadow:
    0 0 7px rgba(56,189,248,0.22),
    0 0 7px rgba(34,197,94,0.22);
}

/* ---------------------------------------------------------
   Ghost Button (minimal, classy)
   --------------------------------------------------------- */
.btn.ghost{
  background: rgba(15,23,42,0.35);
  color: var(--text);
  border-color: rgba(148,163,184,0.35);
  backdrop-filter: blur(2px);
}

.btn.ghost:hover{
  border-color: rgba(56,189,248,0.55);

  box-shadow:
    0 0 6px rgba(56,189,248,0.16),
    0 0 6px rgba(34,197,94,0.12);

  color: var(--text);
}

/* ---------------------------------------------------------
   Danger Button (destructive but still on-brand)
   --------------------------------------------------------- */
.btn.danger{
  background: var(--brand-grad);
  color: #07121a;
  border-color: rgba(239,68,68,0.40);

  box-shadow:
    0 0 6px rgba(239,68,68,0.22),
    0 0 6px rgba(56,189,248,0.12),
    0 0 6px rgba(34,197,94,0.12);
}

.btn.danger:hover{
  transform: translateY(-1px);

  box-shadow:
    0 0 8px rgba(239,68,68,0.30),
    0 0 8px rgba(56,189,248,0.18),
    0 0 8px rgba(34,197,94,0.18);
}
.add-puppy-btn img{
  display: block;
  max-width: 75px;   /* adjust to taste */
  height: auto;
 
}
@media (max-width: 768px) {
  .action-row .btn.btn-no-stretch{
    width: auto;
    min-width: 170px;
    align-self: flex-start;
   
  }
}
.brand-datetime {
  font-size: 12px;
  opacity: 0.75;
  margin-top: 4px;
  margin-bottom: 4px;
  font-weight: 600;
  color: #94a3b8;
}





