.is-hidden {
  display: none !important;
}

/* Base */
* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

html,
body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

html {
  font-size: 16px; /* Base font size for rem units */
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #eef4f1;
  color: #1f2933;
  line-height: 1.5;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

body.has-open-modal {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

body.has-open-modal .Pawnest-App {
  overflow: hidden;
}

button {
  transition:
    background 0.2s ease-in-out,
    background-color 0.2s ease-in-out,
    border-color 0.2s ease-in-out,
    color 0.2s ease-in-out,
    transform 0.1s ease;
    cursor: pointer;
}

/* App Shell */
.Pawnest-App {
  --topbar-height: 70px;
  max-width: 430px;
  min-height: 100vh;
  margin: 0 auto;
  overscroll-behavior-x: none;
  overflow-x: hidden;
  touch-action: pan-y;
  
}

.Pawnest-App::before {
    content: "";
    max-width: 430px;
    margin: 0 auto;
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        radial-gradient(
            circle at 12% 78%,
            rgba(255, 196, 196, 0.38) 0%,
            rgba(255, 196, 196, 0.18) 18%,
            transparent 42%
        ),

        radial-gradient(
            circle at 28% 20%,
            rgba(185, 245, 255, 0.30) 0%,
            rgba(185, 245, 255, 0.12) 20%,
            transparent 45%
        ),

        radial-gradient(
            circle at 82% 25%,
            rgba(255, 228, 196, 0.22) 0%,
            rgba(255, 228, 196, 0.10) 16%,
            transparent 38%
        ),

        radial-gradient(
            circle at 88% 78%,
            rgba(215, 210, 255, 0.22) 0%,
            rgba(215, 210, 255, 0.08) 18%,
            transparent 40%
        ),

        linear-gradient(
            180deg,
            #f9fbff 0%,
            #f4f5fb 45%,
            #f5f6fb 100%
        );
}

#pawnest-view-inner {
  padding: calc(var(--topbar-height) + 20px) 12px 80px;
  min-height: 100vh;
}

#pawnest-view-inner__inner {
  margin-top: 20px;
}

/* Page Transitions */
.route-stage {
  position: relative;
  overflow: hidden;
}

.route-stage.is-transitioning {
  pointer-events: none;
}

.route-page {
  width: 100%;
  will-change: transform;
  backface-visibility: hidden;
}

.route-page-enter-forward {
  animation: routeEnterForward 150ms ease-in-out forwards;
}

@keyframes routeEnterForward {
  from { opacity: 0; transform: translate3d(0, 18px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .route-page-enter-forward {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

[data-page-reveal] {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
  will-change: opacity, transform;
}

[data-page-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.page-hero-reveal {
  position: relative;
  z-index: 5;
}

.page-hero-reveal:has(.select-wrap.is-open) {
  z-index: 40;
}

@media (prefers-reduced-motion: reduce) {
  [data-page-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.card
{
  background: #fff;
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: 0 8px 30px rgba(31, 38, 135, 0.08), inset 0 1px 1px rgba(255,255,255,0.35);
  border-radius: 22px;
}

.glass-effect {
    background: rgba(255,255,255,0.45);
}

.grid {
  display: grid;
  gap: 12px;
}
.grid-2 {
  grid-template-columns: 1fr 1fr;
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.title h3 {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.2;
}

.description {
  padding: 10px;
}

.list {
  list-style: none;
}

/**/
.topbar {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 60;
  width: 100%;
  max-width: 430px;
  min-height: var(--topbar-height);
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 8px rgba(15, 23, 42, .04);
}

.topbar-logo {
  display: block;
  width: auto;
  height: 54px;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-55%, -50%);
}

.topbar p {
  color: #6b7280;
  margin-top: 4px;
  font-size: 0.875rem;
}

.icon-btn {
  position: relative;
  border: none;
  background: #fff;
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 18px;
}

.icon-btn:active {
  transform: scale(0.95);
  background-color: #f0f0f0;
}

.icon-btn img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.notification-bell {
  min-width: 46px;
  min-height: 42px;
}

.notification-badge {
  position: absolute;
  top: 4px;
  right: 5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #f0528c;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .95);
  font-size: 10px;
  font-weight: 800;
  line-height: 14px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(240, 82, 140, .28);
}


/* Page Hero */
.page-hero {
  display: grid;
  grid-template-columns: 46px 1fr 58px;
  gap: 14px;
  align-items: center;
  margin: 0 0 20px;
}

.page-hero--no-delete {
  grid-template-columns: 46px minmax(0, 1fr);
}

.page-back {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.78);
  color: #f0528c;
  font-size: 16px;
  box-shadow:
    0 10px 24px rgba(15,23,42,.06),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.page-delete {
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 236, 241, 0.86);
  color: #ef476f;
  font-size: 16px;
  box-shadow:
    0 10px 24px rgba(239, 71, 111, 0.12),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.page-hero h2 {
  font-size: 26px;
  line-height: 1.05;
  color: #111827;
  margin: 0;
}

.page-hero p {
  margin-top: 6px;
  color: #667085;
  font-size: 15px;
}

.page-hero-content {
  min-width: 0;
  width: 100%;
}

.page-hero-content > .select-wrap {
  width: 100%;
}

.page-hero-breed-select,
.page-hero-breed-select .select-box {
  width: 100%;
}

.page-hero-breed-select .select-box {
  min-height: 50px;
  border-color: rgba(240, 82, 140, .45);
}

.page-hero-breed-select .select-menu {
  z-index: 60;
}

.confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.24);
}

.confirm-modal[hidden] {
  display: none;
}

.confirm-modal__panel {
  width: min(100%, 340px);
  padding: 22px;
  text-align: center;
  backdrop-filter: blur(22px);
}

.confirm-modal__panel h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 22px;
}

.confirm-modal__panel p {
  margin: 0;
  color: #667085;
  font-size: 14px;
}

.confirm-modal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.confirm-modal__actions button {
  min-height: 46px;
  border: 0;
  border-radius: 14px;
  font-weight: 700;
}

.confirm-modal__actions .ghost {
  background: rgba(255, 255, 255, 0.78);
  color: #475467;
}

.confirm-modal__actions .danger {
  background: #ffe8ee;
  color: #d92d20;
}


/* Pet Switcher */
.pet-switcher-wrap {
  display: flex;
  gap: 10px;
  padding: 10px;
  margin-bottom: 15px;
}

.pet-switcher-scroll {
  flex: 1;
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scrollbar-width: none;
}

.pet-switcher-scroll::-webkit-scrollbar {
  display: none;
}

.pet-switcher-scroll.is-muted {
  opacity: 0.45;
}

.pet-switcher-scroll > .empty-state {
  flex: 1 0 100%;
}

.pet-chip {
  border: none;
  background: transparent;
  padding: 0;
  min-width: 60px;
  text-align: center;
}

.pet-chip:active:not(:disabled) {
  transform: scale(0.94);
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.02);
}

.pet-chip:disabled {
  cursor: default;
  transform: none;
}

.pet-chip.is-placeholder .pet-chip-avatar {
  border-style: dashed;
  color: #9ca3af;
}

.pet-chip-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  border: 3px solid #dce3df;
  place-items: center;
  font-size: 24px;
  position: relative;
  transition: border-color 0.2s ease-in-out; /* Add transition */
}

.pet-chip-avatar i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
}

.pet-chip-avatar img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.pet-chip.is-active .pet-chip-avatar {
  border-color: #35b779;
}

.pet-chip span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 700;
}

.pet-chip-add {
  flex: 0 0 auto;
}

.pet-chip-add .pet-chip-avatar {
  background: #fff0fa;
  border-color: #e052b5;
  color: #e052b5;
  font-size: 32px;
  display: grid;
}


/* Page Tabs */
.page-tabs {
  align-items: center;
  padding: 8px 10px;
}

.page-tabs button {
  position: relative;
  min-height: 54px;
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font: inherit;
  color: #7b8494;
}

.page-tabs button:active:not(:disabled) {
  transform: scale(0.94);
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.02);
}

.page-tabs button::after {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: #f0528c;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition:
    opacity 0.2s ease-in-out,
    transform 0.2s ease-in-out;
}

.page-tabs i {
  font-size: 18px;
}

.page-tabs span {
  font-size: 12px;
  font-weight: 600;
}

.page-tabs button.is-active {
  color: #f0528c;
}

.page-tabs button.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}


/* Profile Overview */
.profile-overview {
  margin-bottom: 20px;
  padding: 10px;
}

/* Avatar Card */
.avatar-wrap {
  display: flex;
  gap: 14px;
  align-items: center;
  position: relative;
  padding: 12px 46px 12px 12px;
  box-shadow: none;
}

.avatar-content {
  width: 100%;
  min-width: 0;
}

.avatar-content h2 {
  padding-right: 4px;
  font-size: 1.375rem;
}

.avatar-edit-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: #e3f7ee;
  color: #087443;
  display: grid;
  place-items: center;
  font-size: 14px;
}

.avatar-edit-btn:active {
  transform: scale(0.95);
  background-color: #d0f0e0;
}

.avatar-meta {
  display: grid;
  gap: 4px;
  margin-top: 6px;
}

.avatar-meta-row {
  display: grid;
  gap: 1px;
}

.avatar-meta-row.dob {
  margin-top: 10px;
}

.avatar-meta-row span {
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 700;
}

.avatar-meta-row strong {
  color: #1f2933;
  font-size: 0.9375rem;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.profile-avatar {
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  background: #e3f7ee;
  display: grid;
  place-items: center;
  font-size: 34px;
  flex-shrink: 0;
  overflow: hidden;
}

button.profile-avatar.has-image {
  cursor: pointer;
  padding: 0;
}

button.profile-avatar.has-image:active {
  transform: scale(.96);
}

.profile-avatar i {
  color: #9585d2;
}

.profile-avatar img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.profile-avatar.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.action-tabs-wrap {
  margin-bottom: 20px;
}

.action-tabs-wrap .title {
  margin-bottom: 10px;
}

.action-tabs {
  padding: 0;
  overflow: hidden;
}

.action-tab {
  width: 100%;
  min-height: 66px;
  padding: 12px 16px;
  border: 0;
  border-bottom: 1px solid rgba(15, 23, 42, .06);
  background: transparent;
  color: #1f2933;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.action-tab:last-child {
  border-bottom: 0;
}

.action-tab:active {
  transform: none;
  background: rgba(255, 255, 255, .55);
}

.action-tab-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(96, 165, 250, .14);
  color: #3b82f6;
  font-size: 16px;
}

.action-tab.purple .action-tab-icon {
  background: rgba(139, 92, 246, .14);
  color: #8b5cf6;
}

.action-tab.pink .action-tab-icon {
  background: rgba(240, 82, 140, .14);
  color: #f0528c;
}

.action-tab.orange .action-tab-icon {
  background: rgba(251, 146, 60, .14);
  color: #f97316;
}

.action-tab-label {
  font-size: 14px;
  font-weight: 600;
}

.action-tab-arrow {
  color: #64748b;
  font-size: 13px;
}

/* Info Grid Card */
.info-wrap {
  margin-top: 18px;
}

.info-wrap > .card {
  padding: 14px;
  position: relative;
  min-height: 82px;
  overflow: hidden;
}

.info-wrap > .card small {
  color: #9ca3af;
  font-weight: 700;
  font-size: 12px;
}

.info-wrap > .card strong {
  display: block;
  margin-top: 6px;
  font-size: 15px;
}

.info-wrap > .card span,
.info-wrap > .card img {
  position: absolute;
  right: 8px;
  bottom: 4px;
  opacity: 0.25;
}

.info-wrap > .card span {
  font-size: 34px;
  opacity: 0.18;
}

.info-wrap > .card img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  opacity: 0.16;
}

/* Recent Files */
.recent-files-wrap {
  margin-bottom: 5px;
}

.recent-files-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scrollbar-width: none;
}

.recent-files-scroll::-webkit-scrollbar {
  display: none;
}

.recent-file-card {
  position: relative;
  overflow: hidden;
  flex: 0 0 146px;
  min-height: 168px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #111827;
  text-decoration: none;
  box-shadow: none;
}

.recent-file-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: .68;
  pointer-events: none;
}

.recent-file-card:active {
  transform: scale(0.94);
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.02);
}

.recent-file-card.blue::before {
  background: linear-gradient(145deg, rgba(219, 239, 255, .95), rgba(255, 255, 255, .22));
}

.recent-file-card.purple::before {
  background: linear-gradient(145deg, rgba(239, 230, 255, .95), rgba(255, 255, 255, .22));
}

.recent-file-card.pink::before {
  background: linear-gradient(145deg, rgba(255, 226, 238, .95), rgba(255, 255, 255, .22));
}

.recent-file-card.is-missing {
  cursor: default;
}

.recent-file-card.is-missing .recent-file-icon {
  color: #667085;
}

.recent-file-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .74);
  box-shadow:
    0 10px 20px rgba(15, 23, 42, .055),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  position: relative;
  z-index: 1;
  color: #111827;
  font-size: 18px;
}

.recent-file-card strong {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.15;
  color: #111827;
  font-weight: 500;
}

.recent-file-meta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: center;
  margin-top: 12px;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 12px;
  background: #f472b6;
  color: #fff;
}

.recent-file-card.is-pdf .recent-file-meta {
  background: #4da3ff;
}

.recent-file-card.blue .recent-file-meta {
  background: #4da3ff;
}

.recent-file-card.purple .recent-file-meta {
  background: #8b5cf6;
}

.recent-file-card.pink .recent-file-meta {
  background: #f472b6;
}

.recent-file-status {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
  color: #667085;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

/* Floating Action Button */
.fab-wrap {
  position: fixed;
  right: max(18px, calc((100vw - 430px) / 2 + 18px));
  bottom: 86px;
  z-index: 120;
  display: grid;
  justify-items: end;
  gap: 14px;
  pointer-events: none;
}

.fab-main,
.fab-option {
  pointer-events: auto;
  border: 0;
}

.fab-main {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f0528c;
  color: #fff;
  font-size: 14px;
  box-shadow: 0 18px 34px rgba(240, 82, 140, .3);
}

.fab-wrap.is-open .fab-main i {
  transform: rotate(45deg);
}

.fab-options {
  display: grid;
  justify-items: end;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity .18s ease,
    transform .18s ease,
    visibility 0s linear .18s;
}

.fab-wrap.is-open .fab-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition:
    opacity .18s ease,
    transform .18s ease,
    visibility 0s;
}

.fab-option {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  background: transparent;
  padding: 0;
}

.fab-wrap:not(.is-open) .fab-option {
  pointer-events: none;
}

.fab-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .96);
  color: #1f2937;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(15, 23, 42, .12);
  white-space: nowrap;
}

.fab-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eef6ff;
  color: #208cf0;
  font-size: 14px;
  box-shadow: 0 16px 30px rgba(32, 140, 240, .2);
}

.fab-option.purple .fab-icon {
  background: #f1ebff;
  color: #8b5cf6;
  box-shadow: 0 16px 30px rgba(139, 92, 246, .18);
}

.fab-option.pink .fab-icon {
  background: #fff0f6;
  color: #f0528c;
  box-shadow: 0 16px 30px rgba(240, 82, 140, .18);
}

.fab-option.danger .fab-icon {
  background: #fff0f0;
  color: #dc143c;
  box-shadow: 0 16px 30px rgba(220, 20, 60, .18);
}


/* Info List Card*/
.info-list-wrap {
  margin-bottom: 20px;
}
.info-list-wrap.style-2 {
  margin-bottom: 5px;
}

.info-list-wrap .card {
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px;
  margin-bottom: 20px;
}

.info-list-wrap .card:last-child
{
  margin-bottom: 0;
}

.info-list-wrap .icon {
  flex-shrink: 0;
  margin-right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.85),
      rgba(255,240,242,.9)
    );
  border: 4px solid rgba(255,255,255,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 14px 30px rgba(225, 111, 111, .12),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.info-list-wrap .icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.info-list-wrap .icon i {
  font-size: 16px;
  color: #e85b73;
}

.info-list-wrap .icon-divider {
  flex-shrink: 0;
  margin-right: 12px;
  width: 2px;
  height: 50px;
  border-radius: 999px;
  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(228, 184, 190, .6),
      transparent
    );
}

.info-list-wrap .info-content {
  flex: 0 1 auto;
  min-width: 0;
  margin-right: 10px;
}

.info-list-wrap .info-content .label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #7f7182;
}

.info-list-wrap .info-content h3 {
  margin: 5px 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: #101828;
}

.info-list-wrap .info-content .pill {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 5px;
  border-radius: 999px;
  background: rgba(244, 212, 217, .38);
  backdrop-filter: blur(8px);
}

.info-list-wrap .info-content .pill i,
.info-list-wrap .info-content .pill span {
  color: #d94f68;
}

.info-list-wrap .info-content .pill i {
  font-size: 12px;
}

.info-list-wrap .info-content .pill span {
  font-size: 12px;
  font-weight: 600;
}

.info-list-wrap .info-progress-wrap {
  flex: 1 1 120px;
  max-width: 200px;
  min-width: 0;
  margin-left: auto;
}

.info-list-wrap .due-progress {
  position: relative;
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: rgba(242, 209, 209, .45);
  overflow: visible;
}

.info-list-wrap .due-progress span {
  position: relative;
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #20c997, #42d392);
  z-index: 1;
}

.info-list-wrap .card.is-yellow .due-progress span {
  background: linear-gradient(90deg, #f9c74f, #ffb703);
}

.info-list-wrap .card.is-red .due-progress span {
  background: linear-gradient(90deg, #ff4f74, #ff5f5f);
}

.info-list-wrap .due-progress span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #20c997;
  box-shadow:
    0 6px 16px rgba(32, 201, 151, .3);
}

.info-list-wrap .card.is-yellow .due-progress span::after {
  border-color: #ffb703;
  box-shadow: 0 6px 16px rgba(255, 183, 3, .3);
}

.info-list-wrap .card.is-red .due-progress span::after {
  border-color: #ff5f5f;
  box-shadow: 0 6px 16px rgba(255, 95, 95, .3);
}

.info-list-wrap .due-progress > i {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(242, 209, 209, .7);
  z-index: 0;
}

/**/
.timeline {
  gap: 36px;
}

.timeline .row {
  grid-template-columns: 34px minmax(0, 1fr);
  position: relative;
}

.timeline.timeline--cards {
  gap: 14px;
}

.timeline.timeline--cards .row {
  grid-template-columns: 1fr;
}

.timeline .rail {
  position: relative;
  min-height: 100%;
}

.timeline .rail::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: -32px;
  left: 16px;
  width: 2px;
  background: rgba(148, 163, 184, .18);
}

.timeline .row:last-child .timeline .rail::before {
  display: none;
}

.timeline .rail span {
  position: sticky;
  top: 96px;
  display: block;
  width: 18px;
  height: 18px;
  margin: 10px auto 0;
  border-radius: 50%;
  border: 4px solid #fff;
  background: var(--timeline-accent);
  box-shadow:
    0 0 0 4px var(--timeline-glow),
    0 8px 18px rgba(15, 23, 42, .08);
}

.timeline .content {
  min-width: 0;
}

.timeline .date {
  margin: 6px 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.timeline .card {
  position: relative;
  overflow: hidden;
  padding: 18px 18px 16px;
}

.timeline .menu {
  position: absolute;
  top: 17px;
  right: 14px;
  border: 0;
  background: transparent;
  color: #758195;
  font-size: 18px;
}

.timeline .header {
  grid-template-columns: 44px 1fr;
  align-items: center;
  padding-right: 28px;
}

.timeline .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .78);
  border: 4px solid #fff;
  box-shadow:
    0 10px 22px rgba(15, 23, 42, .06),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.timeline .icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.timeline .tag {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--timeline-accent);
  background: var(--timeline-soft);
}

.timeline .header h3 {
  margin: 8px 0 0;
  font-size: 16px;
  color: #111827;
}

.timeline .sub-list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 14px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(220, 252, 231, .72),
    rgba(240, 253, 250, .72)
  );
}

.timeline .sub-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  font-size: 14px;
  color: #1f2937;
}

.timeline .sub-list i {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #10a66a;
  color: #fff;
  font-size: 8px;
  display: grid;
  place-items: center;
}

.timeline .sub-list .is-no i {
  background: #94a3b8;
}

.timeline .sub-list .is-no {
  color: #64748b;
}

.timeline .notes {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  margin-top: 16px;
  padding: 14px;
  border-radius: 18px;
  background: var(--timeline-soft);
}

.timeline .notes > i {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: rgba(255,255,255,.65);
  color: var(--timeline-accent);
  display: grid;
  place-items: center;
}

.timeline .notes p {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.35;
  color: #667085;
}

.timeline .due-date,
.timeline .timeline-meta-row {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--timeline-soft);
  color: var(--timeline-accent);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.timeline .timeline-meta-row {
  margin-top: 10px;
}

.timeline .due-date small,
.timeline .timeline-meta-row small {
  color: #667085;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.timeline .due-date span,
.timeline .timeline-meta-row span {
  font-weight: 700;
}

.timeline .footer {
  display: grid;
  grid-template-columns: 1fr auto;
  border-top: 1px solid rgba(15, 23, 42, .06);
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}

.timeline .location {
  margin-top: 14px;
  color: var(--timeline-accent);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}


.timeline .row.is-care {
  --timeline-accent: #f0528c;
  --timeline-soft: rgba(255, 232, 242, .78);
  --timeline-glow: rgba(240, 82, 140, .15);
}

.timeline .row.is-vet-visit {
  --timeline-accent: #7c3aed;
  --timeline-soft: rgba(243, 232, 255, .78);
  --timeline-glow: rgba(124, 58, 237, .15);
}

.timeline .row.is-vaccine {
  --timeline-accent: #0b7cff;
  --timeline-soft: rgba(226, 241, 255, .82);
  --timeline-glow: rgba(11, 124, 255, .15);
}

.timeline .row.is-birthday {
  --timeline-accent: #ff8a00;
  --timeline-soft: rgba(255, 244, 223, .82);
  --timeline-glow: rgba(255, 138, 0, .15);
}

.timeline .row.is-schedule-walk {
  --timeline-accent: #14b8a6;
  --timeline-soft: rgba(204, 251, 241, .78);
  --timeline-glow: rgba(20, 184, 166, .15);
}

.timeline .row.is-schedule-treat {
  --timeline-accent: #f97316;
  --timeline-soft: rgba(255, 237, 213, .82);
  --timeline-glow: rgba(249, 115, 22, .15);
}

.timeline .row.is-schedule-food {
  --timeline-accent: #eab308;
  --timeline-soft: rgba(254, 249, 195, .82);
  --timeline-glow: rgba(234, 179, 8, .15);
}

.timeline .row.is-schedule-play {
  --timeline-accent: #06b6d4;
  --timeline-soft: rgba(207, 250, 254, .82);
  --timeline-glow: rgba(6, 182, 212, .15);
}

.timeline .row.is-schedule-sleep {
  --timeline-accent: #6366f1;
  --timeline-soft: rgba(224, 231, 255, .82);
  --timeline-glow: rgba(99, 102, 241, .15);
}

.timeline .row.is-schedule {
  --timeline-accent: #8b5cf6;
  --timeline-soft: rgba(237, 233, 254, .82);
  --timeline-glow: rgba(139, 92, 246, .15);
}

.timeline .row.is-share-active {
  --timeline-accent: #10b981;
  --timeline-soft: rgba(209, 250, 229, .78);
  --timeline-glow: rgba(16, 185, 129, .15);
}

.timeline .row.is-share-inactive {
  --timeline-accent: #94a3b8;
  --timeline-soft: rgba(241, 245, 249, .82);
  --timeline-glow: rgba(148, 163, 184, .15);
}


.timeline-menu {
  border: none;
  background: transparent;
  color: #758195;
  font-size: 18px;
  line-height: 1;
  padding: 0;
}

.timeline-menu:active {
  transform: scale(0.9);
}


.timeline-attachments {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 54px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: #ffe8ef;
  color: #e11d48;
  padding: 0 13px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  margin-top: 8px;
}

button.timeline-attachments:active {
  transform: scale(.96);
}

.timeline-attachments i {
  font-size: 13px;
}


/* Form Wrap*/
.form-wrap {
  padding: 15px;
}

.form-wrap label {
  display: block;
  margin: 22px 0 10px;
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
}

.text-input {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(237, 241, 245, .9);
  box-shadow:
    0 8px 18px rgba(15,23,42,.035),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.text-input > i {
  color: #f0528c;
  font-size: 16px;
}

.text-input input,
.text-input textarea {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 15px;
  color: #111827;
}

.text-input textarea {
  min-height: 74px;
  padding: 18px 0;
  resize: none;
}

.text-input input::placeholder,
.text-input textarea::placeholder {
  color: #98a2b3;
}

.inline-icon-action {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(240, 82, 140, .1);
  color: #f0528c;
}

.inline-icon-action:active {
  transform: scale(.96);
}


.mobile-input-row {
  display: grid;
  grid-template-columns: minmax(96px, 118px) 1fr;
  gap: 10px;
  align-items: start;
}

.mobile-code-field .field-label {
  display: none;
}

.mobile-code-field .select-box,
.mobile-number-input {
  min-height: 50px;
}

.mobile-code-select .select-box {
  padding: 0 12px;
}

.mobile-code-select .select-value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-number-input input {
  min-width: 0;
}
/* Custom Selectbox */
.select-wrap {
  position: relative;
}

.select-wrap.is-open {
  z-index: 25;
}

.select-box {
  width: 100%;
  min-height: 50px;
  border: 1.5px solid rgba(240, 82, 140, .45);
  border-radius: 18px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;

}

.select-icon {
  font-size: 21px;
  color: #f0528c;
}

.select-value {
  flex: 1;
  min-width: 0;
  text-align: left;
  white-space: normal;
}

.select-box i {
  margin-left: auto;
}

.select-menu {
  display: none;
  margin-top: 8px;
  padding: 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(237, 241, 245, .9);
  backdrop-filter: blur(20px);
  box-shadow:
    0 16px 34px rgba(15, 23, 42, .08),
    inset 0 1px 0 rgba(255, 255, 255, .9);
}
.select-wrap.is-open .select-menu {
  display: block;
  width: 100%;
  background: #fff;
  z-index: 25;
  max-height: 325px;
  overflow-y: scroll;
}

.select-option {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 14px;
  padding: 0 12px;
  background: transparent;

  display: flex;
  align-items: center;
  gap: 12px;

  font: inherit;
  text-align: left;
  color: #111827;
}

.select-option span {
  font-size: 22px;
}

.select-option strong {
  flex: 1;
  min-width: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  white-space: normal;
}

.select-option.is-selected {
  background: linear-gradient(
    135deg,
    rgba(255, 232, 242, .9),
    rgba(255, 255, 255, .55)
  );
  color: #f0528c;
}

.select-option:active {
  transform: scale(.99);
}




/* Custom Checkbox */
.checkbox-input {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.checkbox-input .option {
  position: relative;
  min-height: 74px;
  margin: 0 !important;
  padding: 14px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(237,241,245,.9);
  display: grid !important;
  grid-template-columns: 22px 36px 1fr;
  align-items: center;
  gap: 10px;
  box-shadow:
    0 8px 18px rgba(15,23,42,.035),
    inset 0 1px 0 rgba(255,255,255,.9);
  cursor: pointer;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.checkbox-input .option input {
  display: none;
}

.fake-check {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid #cfd6df;
  background: #fff;
}

.checkbox-input .option input:checked + .fake-check {
  border-color: #f0528c;
  background: #f0528c;
  position: relative;
}

.checkbox-input .option input:checked + .fake-check::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
}

.checkbox-input .option-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,235,245,.78);
  font-size: 14px;
}

.checkbox-input strong {
  font-size: 13px;
  line-height: 1.15;
  color: #111827;
  font-weight: 500;
}

.checkbox-input.is-selected {
  border-color: rgba(240,82,140,.35);
  background:
    linear-gradient(145deg, rgba(255,235,245,.78), rgba(255,255,255,.68));
}

.care-option-wide {
  grid-column: 1 / -1;
}

.permission-row {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.permission-row > strong {
  color: #111827;
  font-size: 15px;
}

.permission-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.permission-actions .option {
  min-height: 48px;
  grid-template-columns: 20px 1fr;
  border-radius: 16px;
}


/* Custom Date Picker */
.date-time-field {
  min-height: 58px;
  padding: 0 8px 0 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  border: 1.5px solid rgba(237,241,245,.9);
  display: grid;
  grid-template-columns: 24px 1fr 46px;
  gap: 12px;
  align-items: center;
  box-shadow:
    0 8px 18px rgba(15,23,42,.035),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.date-time-field:focus-within {
  border-color: rgba(240,82,140,.55);
}

.date-time-field > i {
  color: #f0528c;
  font-size: 17px;
}

.date-time-field input {
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 15px;
  color: #1f2937;
}

.date-time-field input::placeholder {
  color: #98a2b3;
}

.date-time-field button {
  display: none;
}

.calendar-popover,
.time-popover {
  margin-top: 16px;
  border-radius: 24px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.9);
  backdrop-filter: blur(22px);
  box-shadow:
    0 18px 38px rgba(15,23,42,.08),
    inset 0 1px 0 rgba(255,255,255,.9);
  overflow: hidden;
  display: none;
}

.calendar-popover:not([hidden]),
.time-popover:not([hidden]) {
  display: block;
}

.calendar-head {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  padding: 18px 18px 8px;
}

.calendar-head strong {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  font-size: 18px;
  color: #111827;
}

.calendar-head .calendar-title-btn {
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #111827;
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  padding: 4px 6px;
}

.calendar-head .calendar-title-btn:hover {
  background: rgba(240,82,140,.08);
  color: #f0528c;
}

.calendar-head button,
.time-head button {
  border: 0;
  background: transparent;
  color: #f0528c;
  font-size: 16px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.calendar-days {
  padding: 12px 18px 6px;
}

.calendar-days span {
  font-size: 12px;
  font-weight: 800;
  color: #667085;
}

.calendar-dates {
  padding: 8px 18px 18px;
  row-gap: 8px;
}

.calendar-dates button {
  width: 38px;
  height: 38px;
  margin: 0 auto;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #111827;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
}

.calendar-dates .is-muted {
  color: #c0c6d0;
}

.calendar-dates .is-disabled,
.calendar-dates button:disabled {
  color: #c0c6d0;
  cursor: not-allowed;
  opacity: .55;
}

.calendar-dates .is-weekend {
  color: #f0528c;
}

.calendar-dates .is-disabled.is-weekend,
.calendar-dates button:disabled.is-weekend {
  color: #c0c6d0;
}

.calendar-dates .is-soft {
  background: rgba(240,82,140,.14);
  color: #f0528c;
}

.calendar-dates .is-selected {
  background: #f0528c;
  color: #fff;
  box-shadow: 0 10px 20px rgba(240,82,140,.25);
}

.calendar-picker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 18px;
}

.calendar-picker-grid button {
  min-height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255,255,255,.72);
  color: #111827;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
}

.calendar-picker-grid button:hover {
  background: rgba(240,82,140,.1);
  color: #f0528c;
}

.calendar-picker-grid .is-selected {
  background: #f0528c;
  color: #fff;
  box-shadow: 0 10px 20px rgba(240,82,140,.22);
}

.calendar-picker-grid .is-disabled,
.calendar-picker-grid button:disabled {
  color: #c0c6d0;
  cursor: not-allowed;
  opacity: .55;
  box-shadow: none;
}

.calendar-today {
  width: 100%;
  height: 58px;
  border: 0;
  border-top: 1px solid rgba(240,82,140,.08);
  background: rgba(255,242,248,.74);
  color: #f0528c;
  font: inherit;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}


/* Custom Time Picker */
.time-head {
  position: relative;
  padding: 18px;
  text-align: center;
}

.time-head strong {
  font-size: 18px;
  color: #111827;
}

.time-head button {
  position: absolute;
  right: 18px;
  top: 18px;
}

.time-picker {
  display: grid;
  grid-template-columns: 1fr 18px 1fr 18px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 36px 24px;
}

.time-picker b {
  color: #f0528c;
  text-align: center;
}

.time-column {
  max-height: 210px;
  border-radius: 18px;
  background: rgba(255,255,255,.68);
  box-shadow:
    0 8px 18px rgba(15,23,42,.04),
    inset 0 1px 0 rgba(255,255,255,.9);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

.time-column::-webkit-scrollbar {
  display: none;
}

.time-column span,
.time-column strong {
  height: 42px;
  display: grid;
  place-items: center;
  font-size: 15px;
}

.time-column span {
  color: #98a2b3;
  font-weight: 600;
}

.time-column strong {
  background: rgba(240,82,140,.12);
  color: #f0528c;
  font-weight: 900;
}

.ampm-column {
  align-self: center;
}

.time-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(15,23,42,.06);
}

.time-actions button {
  height: 56px;
  border: 0;
  background: rgba(255,255,255,.55);
  font: inherit;
  font-weight: 800;
  color: #667085;
}

.time-actions button + button {
  border-left: 1px solid rgba(15,23,42,.06);
  color: #f0528c;
}


/* Forms */
.form-error {
  display: none;
  color: #dc2626;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  padding: 15px;
}

.form-error.is-visible {
  display: block;
  margin-bottom: 15px;
}

.form-error.is-success {
  color: #087443;
}

.form-error:not(.is-visible) + .field > label,
.form-error:not(.is-visible) + .conditional + label,
.form-error:not(.is-visible) + .conditional.is-visible label:first-child,
.form-wrap > .field:first-of-type > label {
  margin-top: 0;
}

.field-error {
  display: block;
  margin-top: 8px;
  color: #dc2626;
  font-size: 13px;
  font-weight: 500;
}

.field.has-error .text-input,
.field.has-error .select-wrap,
.field.has-error .date-time-field {
  border-color: rgba(220,38,38,.45);
}

/**/
.primary {
  width: 100%;
  height: 58px;
  margin-top: 28px;
  border: 0;
  border-radius: 20px;
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  background: linear-gradient(100deg, #ff4f7b, #a855f7);
  box-shadow:
    0 14px 26px rgba(168,85,247,.2),
    0 8px 18px rgba(255,79,123,.18);
}

.primary:active {
  transform: scale(0.97);
}

.danger-btn {
  width: 100%;
  border: none;
  background: #fff1f2;
  color: #be123c;
  border-radius: 16px;
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
}

.danger-btn:active {
  transform: scale(0.97);
  background-color: #fee2e2;
}

.conditional {
  display: none;
}

.conditional.is-visible {
  display: block;
}


/* Attachments */
.attachment-block {
  padding: 16px;
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(237,241,245,.9);
  box-shadow:
    0 8px 20px rgba(15,23,42,.035),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.attachment-block + .attachment-block {
  margin-top: 16px;
}

.attachment-block h3 {
  margin: 0 0 12px;
  font-size: 18px;
  color: #111827;
}

.upload-zone {
  min-height: 118px;
  border-radius: 20px;
  border: 1.5px dashed var(--upload-accent);
  background: var(--upload-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px;
  cursor: pointer;
}

.upload-zone input,
.photo-add-more input {
  display: none;
}

.upload-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.65);
  color: var(--upload-accent);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex: 0 0 auto;
}

.upload-zone span:last-child {
  font-size: 15px;
  color: #667085;
}

.upload-zone strong {
  color: var(--upload-accent);
}

.upload-zone small {
  display: block;
  margin-top: 5px;
  color: #667085;
}

.file-attachment .title {
  margin: 16px 0 10px;
  font-size: 14px;
  font-weight: 700;
  color: #667085;
}
.attachment-existing {
  display: grid;
  grid-template-columns: 76px minmax(56px, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.attachment-existing--file {
  padding: 8px 0;
}

.attachment-existing-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.attachment-existing-actions a,
.attachment-existing-actions button {
  min-width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #eef2f7;
  color: #667085;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.attachment-existing-actions [data-existing-attachment-delete] {
  color: #e11d48;
  background: #ffe8ef;
}

.attachment-existing-label {
  min-height: 1px;
  min-width: 0;
  font-size: 14px;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.image-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(15,23,42,.55);
}

.image-preview-modal[hidden] {
  display: none !important;
}

.image-preview-modal__panel {
  position: relative;
  width: min(92vw, 420px);
  max-height: 82vh;
  padding: 1px;
}

.image-preview-modal__panel img {
  width: 100%;
  max-height: calc(82vh - 28px);
  border-radius: 18px;
  object-fit: contain;
  display: block;
}

.image-preview-modal__panel button {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #f0528c;
  box-shadow: 0 12px 24px rgba(15,23,42,.18);
}

.photo-preview-grid {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.photo-preview-grid::-webkit-scrollbar {
  display: none;
}

.photo-preview {
  position: relative;
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-preview button {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(17,24,39,.76);
  color: #fff;
  display: grid;
  place-items: center;
}

.photo-add-more {
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  border-radius: 16px;
  border: 1.5px dashed #cbd5e1;
  background: rgba(255,255,255,.56);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  color: #f0528c;
  cursor: pointer;
}

.photo-add-more i {
  font-size: 20px;
}

.photo-add-more span {
  font-size: 11px;
  font-weight: 700;
  color: #667085;
}

.file-preview {
  display: grid;
  grid-template-columns: 46px 1fr 34px;
  align-items: center;
  gap: 12px;
}

.file-icon {
  
  justify-self: start;
  width: 46px;
  height: 54px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff4f6f, #ff7a59);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  display: grid;
  place-items: center;
}

.file-preview strong {
  display: block;
  font-size: 15px;
  color: #111827;
}

.file-preview small {
  display: block;
  margin-top: 4px;
  color: #667085;
}

.file-preview button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #eef2f7;
  color: #667085;
}

.attachment-help {
  margin: 12px 0 0;
  font-size: 14px;
  color: #667085;
}

.attachment-notice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #f0528c;
  font-weight: 700;
}

.attachment-actions {
  display: grid;
  grid-template-columns: .9fr 1.2fr;
  gap: 12px;
  margin-top: 18px;
}


.attachment-block {
  --upload-accent: #f0528c;
  --upload-soft: rgba(255,232,242,.42);
}


/**/
.form-actions {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10px;
  margin-top: 18px;
}

.form-actions button {
  border: none;
  background: #fff;
  border-radius: 16px;
  padding: 15px;
  font: inherit;
  font-weight: 700;
}

.form-actions button:active {
  transform: scale(0.96);
  background-color: #f1f5f9;
}

.form-actions .primary {
  margin-top: 0;
}

.form-actions button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}


/* Auth */
.auth-wrap {
  min-height: 100vh;
  padding: 20px;
}

.auth-brand-logo {
  display: block;
  height: 80px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.auth-logo {
  text-align: center;
  margin-bottom: 20px;
}

.auth-avatar {
  width: 86px;
  height: 86px;
  font-size: 42px;
  margin: 0 auto 14px;
}


.auth-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 140px);
}

.auth-content h1 {
  font-size: 28px;
  margin: 0 0 6px;
  text-align: center;
}

.auth-content .subtitle {
  color: #6b7280;
  font-size: 14px;
  margin: 0 0 18px;
  text-align: center;
}

.auth-form {
  padding: 18px;
}

.auth-options {
  display: flex;
  justify-content: flex-start;
  margin-top: 10px;
}

.remember {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6b7280;
}

.remember-input {
  grid-template-columns: 1fr;
  gap: 0;
}

.remember-input .option {
  min-height: 44px;
  width: auto;
  grid-template-columns: 20px 1fr;
  padding: 8px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.remember-input .option strong {
  font-size: 14px;
  font-weight: 600;
}

/**/
.legal-consent .option {
  align-items: flex-start;
  min-height: 0;
}

.legal-consent .option strong {
  line-height: 1.45;
}

.legal-link {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: #f0528c;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

/**/
.auth-switch {
  margin-top: 18px;
  text-align: center;
  color: #6b7280;
  font-size: 14px;
}

.auth-switch button {
  border: none;
  background: transparent;
  color: #35b779;
  font-weight: 700;
}

/**/
.legal-wrap {
  margin-bottom: 5px;
}

.legal-wrap .legal-content {
  padding: 22px;
}

.legal-content h1 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 26px;
  line-height: 1.1;
}

.legal-content h3 {
  margin: 22px 0 8px;
  color: #1f2937;
  font-size: 16px;
}

.legal-content p {
  margin: 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.65;
}

.legal-content ul {
  margin: 10px 0 0;
  padding-left: 20px;
  color: #667085;
  font-size: 14px;
  line-height: 1.65;
}

.legal-content li + li {
  margin-top: 4px;
}

.legal-content a {
  color: #f0528c;
  font-weight: 700;
  text-decoration: none;
}

.legal-modal {
  padding: 18px;
}

.legal-modal__panel {
  position: relative;
  width: 430px;
  max-height: min(78vh, 720px);
  overflow-y: auto;
  padding: 22px;
  background: #fff;
  text-align: left;
}

.legal-modal__close {
  position: sticky;
  top: 0;
  float: right;
  width: 38px;
  height: 38px;
  margin: -6px -6px 8px 12px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 235, 245, .92);
  color: #f0528c;
  font-size: 16px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.otp-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-top: 25px;
  width: 100%;
}

.otp-input {
  width: 100%;
  min-width: 0;
  aspect-ratio: 1;
  max-height: 58px;
  border: 1px solid rgba(237, 241, 245, .9);
  border-radius: 16px;
  background: rgba(255, 255, 255, .84);
  color: #111827;
  box-shadow:
    0 8px 18px rgba(15,23,42,.035),
    inset 0 1px 0 rgba(255,255,255,.9);
  text-align: center;
  font: inherit;
  font-size: 21px;
  font-weight: 900;
  padding: 0;
  outline: none;
}

.otp-input:focus {
  border-color: rgba(240, 82, 140, .7);
  box-shadow:
    0 0 0 4px rgba(240, 82, 140, .1),
    0 8px 18px rgba(15,23,42,.035),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.otp-resend {
  width: 100%;
  min-height: 50px;
  margin-top: 12px;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 232, 242, .78);
  color: #e11d48;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
}

.otp-resend:active {
  transform: scale(.98);
  background: rgba(255, 218, 234, .9);
}

.field-label-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 22px 0 10px;
}

.field-label-action label {
  margin: 0;
}

.field-label-action .inline-icon-action {
  flex: 0 0 auto;
}

.otp-resend-inline {
  width: auto;
  min-width: 36px;
  padding: 0 12px;
  gap: 7px;
  border-radius: 999px;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
}

.otp-resend-inline span {
  white-space: nowrap;
}

.auth-secondary-btn {
  width: 100%;
  min-height: 50px;
  margin-top: 12px;
  border: 0;
  border-radius: 18px;
  background: rgba(239, 246, 255, .82);
  color: #64748b;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
}

.auth-secondary-btn:active {
  transform: scale(.98);
  background: rgba(226, 232, 240, .9);
}

.auth-logout-card {
  margin-top: 18px;
  padding: 14px;
}

.auth-logout-btn {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 18px;
  background: #fff1f2;
  color: #e11d48;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
}

.auth-logout-btn:active {
  transform: scale(.98);
}

/* Add/Edit Pet Form */
.profile-upload {
  display: flex;
  justify-content: center;
}

.profile-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #e3f7ee;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 42px;
}

.profile-circle.has-image {
  overflow: visible;
}

.profile-circle.has-image img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.edit-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #35b779;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 !important;
}
.edit-icon i
{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

.edit-icon:active {
  transform: scale(0.95);
  background-color: #2e9f6a;
}


/* Bottom Nav */
.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 100;
  width: 100%;
  max-width: 430px;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  border-radius: 22px 22px 0 0;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .85);
  backdrop-filter: blur(22px);
  box-shadow:
    0 14px 34px rgba(15, 23, 42, .08),
    inset 0 1px 0 rgba(255, 255, 255, .9);
}

.bottom-nav button {
  position: relative;
  min-height: 50px;
  border: 0;
  border-radius: 22px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #667085;
}

.bottom-nav button:active {
  transform: scale(.96);
}

.bottom-nav .nav-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;

  transition:
    transform .2s ease,
    filter .2s ease;
}

.bottom-nav button span {
  font-size: 12px;
  font-weight: 700;
  color: #667085;
}

.bottom-nav button.active {
  background:
    linear-gradient(
      135deg,
      rgba(255, 236, 243, .95),
      rgba(255, 255, 255, .6)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 10px 20px rgba(240,82,140,.08);
}

.bottom-nav button.active span {
  color: #f0528c;
}

.bottom-nav button.active .nav-icon {
  transform: scale(1.08);

  filter:
    drop-shadow(0 6px 12px rgba(240,82,140,.18));
}

.bottom-nav button:not(.active):hover {
  background: rgba(255,255,255,.38);
}


/* Home Page */
.welcome {
  position: relative;
  overflow: hidden;
  padding: 24px 20px 18px;
  margin-bottom: 20px;
}

.welcome .content {
  position: relative;
  z-index: 1;
}

.welcome .kicker {
  display: flex;
  align-items: center;
  gap: 9px;

  color: #8b5cf6;
  font-size: 14px;
  font-weight: 800;
}

.welcome .kicker i {
  color: #f59e0b;
  font-size: 18px;
}

.welcome .content h2 {
  margin: 18px 0 12px;

  font-size: 30px;
  line-height: 1.05;
  font-weight: 900;

  color: #111827;
}

.welcome .content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: #667085;
}


/**/
/* Breed directory */
.breed-description-box {
  margin-bottom: 5px;
  padding: 15px;
}
.temperament-details {
  margin-bottom: 20px;
}

.breed-description-box p {
  margin: 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.6;
}

.breed-overview-grid [data-dotted-item][hidden] {
  display: none;
}

.breed-overview-pager {
  margin-top: 14px;
}

.info-list-wrap.style-2 .card {
  display: block;
  padding-left: 88px;
}

.info-list-wrap.style-2 .icon {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  margin-right: 0;
}

.info-list-wrap.style-2 .icon-divider {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 72px;
  height: auto;
  margin-right: 0;
}

.info-list-wrap.style-2 .info-content {
  min-width: 0;
}

.info-list-wrap.style-2 .info-content h3 {
  margin-bottom: 0;
}

.info-list-wrap.style-2 .info-progress-wrap {
  width: 95%;
  max-width: none;
  margin: 12px 0 10px 0;
  padding-left: 0;
}
/* Search select modifiers */
.select-wrap.has-search .select-menu {
  overflow: hidden;
  padding: 0;
}

.select-wrap.has-search.is-open .select-menu {
  max-height: 340px;
  overflow: hidden;
}

.select-box.style-2 + .select-menu {
  position: absolute;
}

.select-wrap.has-avatar .select-box {
  min-height: 56px;
}

.select-avatar,
.select-option-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 235, 245, 0.85);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}

.select-avatar img,
.select-option-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.select-search-input {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  background: rgba(255, 255, 255, 0.96);
}

.select-search-input i {
  color: #f0528c;
}

.select-search-input input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
}

.select-options-list {
  max-height: 278px;
  overflow-y: auto;
  padding: 8px;
}

.select-option.dropdown-header,
.select-option.is-disabled {
  min-height: auto;
  cursor: default;
  opacity: 1;
  padding: 12px 10px 6px;
  color: #f0528c;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
}

.select-option.dropdown-header:active,
.select-option.is-disabled:active {
  transform: none;
}

.select-empty {
  padding: 14px;
  color: #667085;
  text-align: center;
}





/* Notifications */
.notifications-page {
  display: grid;
  gap: 16px;
  padding-bottom: 24px;
}

.notification-settings-form {
  display: grid;
  gap: 12px;
  padding: 15px;
}

.notification-settings-card {
  padding: 18px;
}

.notification-settings-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #111827;
}

.notification-settings-card .field:first-of-type label {
  margin-top: 12px;
}

.notifications-page .notification-card {
  align-items: flex-start;
  min-height: 112px;
  padding-right: 58px;
  margin-bottom: 0;
}

.notifications-page .notification-card[data-notification-url] {
  cursor: pointer;
}

.notification-card.is-unread {
  border-color: rgba(240, 82, 140, .28);
}

.notification-card.is-unread::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 58px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f0528c;
  box-shadow: 0 0 0 4px rgba(240, 82, 140, .12);
}

.notification-card .info-content {
  padding-bottom: 22px;
}

.notification-card .icon.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.notification-message {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 9px 12px;
  border-radius: 14px;
  background: rgba(244, 212, 217, .38);
  color: #667085;
  font-size: 13px;
  font-weight: 600;
}

.notification-message i {
  color: #f0528c;
}

.notification-action,
.notification-delete {
  border: 0;
}

.notification-action {
  width: fit-content;
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(238, 244, 255, .9);
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.notification-delete {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 228, 235, .95);
  color: #e11d48;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.notification-time {
  position: absolute;
  right: 16px;
  bottom: 12px;
  color: #667085;
  font-size: 12px;
  font-weight: 700;
}

/**/
.empty-state {
  display: block;
  padding: 18px;
  color: #667085;
  font-size: 13px;
  font-weight: 700;
}

.empty-state h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: #1f2937;
}

.empty-state p {
  margin: 0;
  color: #667085;
  font-size: 14px;
}

.ads {
  padding: 14px;
}

.ad-label {
  display: block;
  font-size: 11px;
  color: #888;
  margin-bottom: 8px;
}

/* Home widgets */
.title {
  margin: 0 2px 10px;
}

.title h3 small {
  color: #667085;
  font-size: 12px;
  font-weight: 600;
}

.title--with-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.title--with-action h3 {
  margin-bottom: 0;
}

.title button {
  border: 0;
  background: transparent;
  color: #f0528c;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 0;
}
.home-pets-section .pet-switcher-wrap--home {
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
  margin-bottom: 12px;
  gap: 10px;
}

.pet-switcher-wrap--home .pet-switcher-scroll {
  gap: 10px;
  flex: 1 1 auto;
  scroll-behavior: smooth;
}

.pet-switcher-wrap--home .pet-chip {
  position: relative;
  flex: 0 0 104px;
  min-width: 104px;
  min-height: 128px;
  padding: 12px 8px 10px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 18px;
  background: rgba(255,255,255,.55);
}

.pet-switcher-wrap--home .pet-chip.is-active {
  border-color: rgba(240,82,140,.55);
  background: rgba(255,255,255,.72);
}

.pet-switcher-wrap--home .pet-chip-avatar {
  width: 74px;
  height: 74px;
  margin: 0 auto;
  border: 0;
  background: rgba(255,240,246,.85);
}

.pet-switcher-wrap--home .pet-chip-avatar i {
  color: #8b5cf6;
  font-size: 25px;
}

.pet-switcher-wrap--home .pet-chip span:not(.pet-chip-check) {
  margin-top: 8px;
  color: #1f2937;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
}

.pet-switcher-wrap--home .pet-chip small {
  display: block;
  margin-top: 4px;
  color: #667085;
  font-size: 10px;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pet-switcher-wrap--home .pet-chip-check {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f0528c;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 9px;
  margin: 0;
}

.pet-switcher-wrap--home .pet-chip-add {
  flex: 0 0 104px;
}

.pet-switcher-wrap--home .pet-chip-add .pet-chip-avatar {
  display: grid;
  border: 1px solid rgba(240,82,140,.18);
  background: rgba(255,240,246,.78);
  color: #f0528c;
  font-size: 34px;
  font-weight: 300;
}

.info-tip {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  min-height: 0;
  padding: 18px;
  overflow: hidden;
  margin-bottom: 25px;
}

.info-tip-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #a78bfa;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
  box-shadow: 0 12px 22px rgba(139,92,246,.22);
}

.info-tip-content h3 {
  margin: 0 0 8px;
  color: #8b5cf6;
  font-size: 15px;
  font-weight: 900;
}

.info-tip-content p {
  display: none;
  margin: 0;
  color: #1f2937;
  font-size: 14px;
  line-height: 1.55;
}

.info-tip-content p.is-active {
  display: block;
}

.info-tip.is-tip-animating .info-tip-content p.is-active {
  animation: tipSlideIn 240ms ease both;
}

.info-tip[data-tip-direction="prev"].is-tip-animating .info-tip-content p.is-active {
  animation-name: tipSlideInReverse;
}

.info-cal {
  margin-bottom: 5px;
}

.info-cal-list {
  overflow: hidden;
  padding: 0;
}

.info-cal-item {
  position: relative;
  width: 100%;
  min-height: 88px;
  border: 0;
  border-bottom: 1px solid rgba(15,23,42,.06);
  background: transparent;
  display: grid;
  grid-template-columns: 54px 58px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px;
  text-align: left;
}

.info-cal-item:last-child {
  border-bottom: 0;
}

.info-cal-date {
  height: 64px;
  border-radius: 18px;
  background: #fff;
  color: #f0528c;
  display: grid;
  place-items: center;
  padding: 7px 0;
  box-shadow: 0 8px 30px rgba(31, 38, 135, 0.08), inset 0 1px 1px rgba(255,255,255,0.35);
}

.info-cal-date small,
.info-cal-date em {
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

.info-cal-date strong {
  color: #1f2937;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.info-cal-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255,240,246,.8);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #8b5cf6;
  align-self: center;
  justify-self: center;
  box-shadow: 0 8px 30px rgba(31, 38, 135, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.35);
}

.info-cal-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-cal-content {
  min-width: 0;
  display: block;
}

.info-cal-content strong {
  display: block;
  color: #1f2937;
  font-size: 13px;
  font-weight: 900;
}

.info-cal-content span {
  display: block;
  margin-top: 5px;
  color: #344054;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.info-cal-content small {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  color: #667085;
  font-size: 11px;
  font-weight: 700;
}

.info-cal-tag {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 5px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255,232,242,.9);
  color: #f0528c;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.info-cal-tag.is-vaccine {
  background: rgba(224,242,254,.9);
  color: #0284c7;
}

.info-cal-tag.is-vet-visit,
.info-cal-tag.is-vetvisit {
  background: rgba(243,232,255,.9);
  color: #8b5cf6;
}

.info-cal-tag.is-care {
  background: rgba(255,232,242,.9);
  color: #f0528c;
}

.info-cal-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #f0528c;
}

.today-overview {
  margin-bottom: 20px;
}

.today-overview-card {
  align-items: stretch;
  gap: 0;
  padding: 18px;
  overflow: hidden;
}

.today-overview-item {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 12px;
  row-gap: 4px;
  min-width: 0;
  padding: 0 18px;
}

.today-overview-item:not(:last-child) {
  border-right: 1px solid rgba(15, 23, 42, 0.08);
}

.today-overview-item:first-child {
  padding-left: 0;
}

.today-overview-item:last-child {
  padding-right: 0;
}

.today-overview-icon {
  grid-row: 1 / span 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 17px;
  background: rgba(240, 82, 140, 0.14);
  color: #f0528c;
}

.today-overview-item strong {
  color: #f0528c;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.today-overview-item span:not(.today-overview-icon) {
  min-width: 0;
  color: #1f2937;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  text-align: left;
}

.today-overview-item.orange .today-overview-icon {
  background: rgba(245, 158, 11, 0.14);
  color: #f59e0b;
}

.today-overview-item.orange strong {
  color: #f59e0b;
}

.today-overview-item.green .today-overview-icon {
  background: rgba(16, 185, 129, 0.14);
  color: #10b981;
}

.today-overview-item.green strong {
  color: #10b981;
}

.breed-explorer {
  margin-bottom: 20px;
}

.breed-explorer .breed-directory-form {
  padding: 18px;
}
.dot-pager {
  display: flex;
  gap: 6px;
}

.dot-pager[hidden] {
  display: none;
}

.dot-pager button {
  width: 6px;
  height: 6px;
  min-width: 0;
  min-height: 0;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(148, 163, 184, 0.25);
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}

.dot-pager button.active {
  width: 13px;
  background: #8b5cf6;
}

.info-tip-dots {
  grid-column: 2;
  margin-top: 12px;
}

.breed-overview-pager {
  justify-content: center;
  width: 100%;
  margin: 14px 0 0;
}

.card-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin: 10px 0 0;
}

.card-pagination--inline {
  justify-content: flex-end;
  width: auto;
  margin: 0 0 0 auto;
  gap: 8px;
}

.card-pagination button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(219, 239, 255, 0.94);
  color: #208cf0;
  box-shadow: 0 10px 18px rgba(32, 140, 240, 0.12), inset 0 1px 0 rgba(255,255,255,.9);
}

.card-pagination--inline button {
  width: 30px;
  height: 30px;
  font-size: 12px;
}

.card-pagination button:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.home-pets-section {
  margin-bottom: 25px;
}

.home-pets-section .pet-switcher-wrap--home {
  display: block;
}

.home-pets-section .pet-switcher-wrap--home .pet-switcher-scroll {
  width: 100%;
}

.info-cal-list .info-cal-avatar img {
  display: block;
  width: 58px;
  height: 58px;
  min-width: 58px;
  max-width: 58px;
  min-height: 58px;
  max-height: 58px;
  object-fit: cover;
}
.load-more-sentinel {
  width: 100%;
  min-height: 1px;
}

[data-load-more].is-loading-more .load-more-sentinel::after {
  content: "Loading...";
  display: block;
  padding: 10px 0;
  color: #667085;
  font-size: 13px;
  text-align: center;
}
[data-dotted-item][hidden] {
  display: none !important;
}

[data-dotted-list].is-dotted-animating {
  animation: dottedSlideIn 240ms ease both;
}

[data-dotted-list][data-dotted-direction="prev"].is-dotted-animating {
  animation-name: dottedSlideInReverse;
}

@keyframes dottedSlideIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes dottedSlideInReverse {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes tipSlideIn {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes tipSlideInReverse {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.info-cal-pager {
  margin-top: 12px;
}

.avatar-meta-row strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  line-height: 1.25;
}

.avatar-meta-status {
  width: 19px;
  height: 19px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: 0 0 19px;
  padding: 0;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(15, 23, 42, .08);
  transform: translateY(-.5px);
}

.avatar-meta-status::before {
  position: absolute;
  inset: 50% auto auto 50%;
  display: block;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.avatar-meta-status.is-verified {
  background: #dff8ec;
  color: #13a76a;
}

.avatar-meta-status.is-verified::before {
  content: "\2713";
}

.avatar-meta-status.is-unverified {
  background: #ffe5e8;
  color: #f05265;
  display: none;
}

.avatar-meta-status.is-unverified::before {
  content: "\00d7";
  font-size: 13px;
}
.field-info {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 10px;
  color: #667085;
  font-size: 13px;
  line-height: 1.45;
}

.field-info i {
  color: #f0528c;
  margin-top: 2px;
}

.field-info button {
  border: 0;
  padding: 0;
  background: transparent;
  color: #f0528c;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.field-info[hidden] {
  display: none;
}
