 .compact-ordered-list {
  padding-left: 20px;
  display: grid;
  gap: 4px;
 }

.compact-ordered-list li {
  line-height: 1.45;
}

.section-divider {
  height: 1px;
  margin: 6px 4px;
  background: linear-gradient(90deg, transparent 0%, rgba(139, 92, 246, 0.28) 12%, rgba(139, 92, 246, 0.22) 88%, transparent 100%);
}

.compact-form {
  margin-top: 2px;
}

.event-checkbox {
  align-self: end;
  min-height: 48px;
}

.event-checkbox.top-align {
  align-self: center;
  padding-top: 22px;
}

.subtle-toggle {
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.compact-toggle {
  min-height: auto;
  align-self: center;
  padding-bottom: 2px;
}

.compact-toggle span {
  margin-bottom: 0;
}

.event-notes-field textarea {
  min-height: 60px;
}

.event-form-actions {
  display: flex;
  justify-content: flex-start;
}

.event-form-actions .btn {
  width: auto;
  min-width: 180px;
  padding: 9px 12px;
  box-shadow: none;
}

.event-form label {
  gap: 4px;
}

.event-form input,
.event-form select,
.event-form textarea {
  padding: 8px 10px;
}

.inline-reminder-list {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}

.inline-reminder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 5px;
  font-size: 0.88rem;
  border-top: 1px dashed rgba(220, 207, 191, 0.9);
}

.inline-reminder form {
  margin: 0;
}

.compact-wrap {
  align-items: center;
}

.reminder-buckets {
  display: grid;
  gap: 18px;
}

.reminder-bucket h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.banner-warning,
.flash,
.floating-reminder {
  margin-bottom: 14px;
  padding: 13px 15px;
  border-radius: 6px;
  font-size: var(--text-small);
}

.toast-viewport {
  position: fixed;
  top: 20px;
  right: 22px;
  z-index: 110;
  display: grid;
  gap: 10px;
  width: min(420px, calc(100vw - 28px));
  pointer-events: none;
}

.toast {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
  margin: 0;
  padding: 14px 14px 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(39, 39, 42, 0.45);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: auto;
  animation: toastIn 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.toast.is-closing {
  animation: toastOut 180ms ease forwards;
}

.toast-body {
  display: grid;
  gap: 3px;
}

.toast-title {
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}

.toast-message {
  line-height: 1.45;
}

.toast-close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(39, 39, 42, 0.62);
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.toast-close:hover {
  background: rgba(39, 39, 42, 0.9);
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes toastOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }
}

.banner-warning {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.28);
}

.flash-success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.18), rgba(20, 22, 31, 0.98));
  border-color: rgba(16, 185, 129, 0.28);
}

.flash-error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.18), rgba(20, 22, 31, 0.98));
  border-color: rgba(239, 68, 68, 0.28);
}

.floating-reminder {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(220px 120px at 0% 50%, rgba(251, 191, 36, 0.18), transparent 70%),
    linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(20, 22, 31, 0.98));
  border: 1px solid rgba(251, 191, 36, 0.34);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  box-shadow:
    0 0 0 1px rgba(251, 191, 36, 0.08),
    0 0 24px rgba(245, 158, 11, 0.14),
    0 12px 28px rgba(0, 0, 0, 0.22);
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
}

.floating-reminder:hover,
.floating-reminder:focus-visible {
  background:
    radial-gradient(240px 128px at 0% 50%, rgba(251, 191, 36, 0.24), transparent 72%),
    linear-gradient(135deg, rgba(245, 158, 11, 0.22), rgba(20, 22, 31, 0.98));
  border-color: rgba(251, 191, 36, 0.46);
  box-shadow:
    0 0 0 1px rgba(251, 191, 36, 0.12),
    0 0 30px rgba(245, 158, 11, 0.2),
    0 16px 32px rgba(0, 0, 0, 0.26);
  transform: translateY(-1px);
}

.floating-reminder strong {
  color: #fff7dd;
}

.floating-reminder span {
  color: #fde68a;
  font-weight: 700;
}

.counter,
.link-button,
small {
  color: var(--muted);
}

.compact-list {
  margin-bottom: 16px;
}

.masterdata-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 8px;
  padding: 18px 20px;
  background:
    radial-gradient(420px 180px at 0% 0%, rgba(186, 246, 214, 0.5), transparent 65%),
    linear-gradient(135deg, rgba(241, 252, 246, 0.98), rgba(251, 255, 253, 0.98));
}

.masterdata-hero h2 {
  margin: 0 0 6px;
  font-size: 1.45rem;
}

.masterdata-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.masterdata-hero-stats .pill {
  gap: 8px;
  align-items: center;
}

.masterdata-layout {
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
}

.masterdata-section {
  min-height: 100%;
}

.masterdata-section-wide {
  grid-column: auto;
}

.masterdata-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

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

.masterdata-category-card {
  min-height: 112px;
  align-items: stretch;
  justify-content: space-between;
  gap: 10px;
}

.masterdata-category-card .inline-actions {
  justify-content: flex-end;
}

.masterdata-category-actions {
  margin-top: auto;
}

.masterdata-entity-card {
  min-height: 138px;
  align-items: stretch;
  justify-content: space-between;
  gap: 10px;
}

.masterdata-create-card {
  padding: 12px;
  border: 1px dashed rgba(167, 210, 189, 0.95);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(242, 251, 246, 0.94), rgba(248, 253, 250, 0.98));
}

.masterdata-inline-create {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) auto auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.masterdata-inline-create .checkbox-line {
  margin: 0;
  white-space: nowrap;
}

.checkbox-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-line input {
  width: auto;
}

.status-row,
.status-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.status-row {
  justify-content: space-between;
  margin-top: 12px;
}

.masterdata-entity-card strong,
.masterdata-category-card strong {
  font-size: 1.04rem;
}

.masterdata-category-card p,
.masterdata-entity-card p {
  margin: 4px 0 0;
  line-height: 1.45;
}

.masterdata-category-actions,
.masterdata-entity-card .inline-actions {
  justify-content: flex-end;
  row-gap: 6px;
}

.masterdata-create-card .btn,
.masterdata-inline-create .btn {
  box-shadow: none;
}

.masterdata-section .btn-outline-danger.icon-button {
  background: transparent;
  color: var(--danger);
  border: 1px solid rgba(239, 68, 68, 0.18);
  box-shadow: none;
}

.masterdata-section .btn-outline-danger.icon-button:hover {
  background: rgba(239, 68, 68, 0.08);
  color: var(--danger);
  box-shadow: none;
  transform: translateY(-1px);
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid transparent;
  background: var(--surface-2);
  color: var(--text-strong);
}

.setup-status-chip {
  min-height: 36px;
  padding: 7px 14px;
  font-weight: 700;
  border-width: 1px;
  box-shadow: 0 1px 0 rgba(39, 39, 42, 0.55) inset;
}

.setup-status-chip.status-ok {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--paper-strong);
}

.setup-status-chip.status-muted {
  background: rgba(148, 163, 184, 0.14);
  border-color: rgba(148, 163, 184, 0.26);
  color: var(--text-soft);
}

.service-status-chip {
  min-height: 36px;
  padding: 7px 14px;
  font-weight: 700;
  border-width: 1px;
  background: rgba(39, 39, 42, 0.92);
}

.service-status-chip.status-active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--paper-strong);
}

.service-status-chip.status-active::before {
  background: var(--paper-strong);
}

.service-status-chip.status-muted::before {
  background: #9aa8b1;
}

.status-ok,
.status-sent {
  background: rgba(16, 185, 129, 0.16);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--text-strong);
}

.status-muted,
.status-pending,
.status-skipped {
  background: rgba(148, 163, 184, 0.14);
  border-color: rgba(148, 163, 184, 0.24);
  color: var(--text-soft);
}

.status-error {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.28);
  color: #ffd4d4;
}

.status-warning {
  background: rgba(245, 158, 11, 0.14);
  border-color: rgba(245, 158, 11, 0.28);
  color: #ffe7b8;
}

.meta-line {
  margin: 6px 0 0;
  color: var(--muted);
}

.ordered-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.login-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.login-panel {
  width: min(480px, 100%);
}

.setup-panel {
  width: min(920px, 100%);
}

.brand-lockup {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

@media (max-width: 960px) {
  .mobile-nav-toggle {
    display: none;
  }

  body {
    background:
      radial-gradient(640px 320px at 50% -10%, rgba(139, 92, 246, 0.22), transparent 62%),
      linear-gradient(180deg, #f5fdf8 0%, #def7eb 100%);
  }

  .telegram-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: flex;
    position: fixed;
    inset: auto 0 0 0;
    width: 100%;
    max-height: min(84vh, 760px);
    z-index: 70;
    transform: translateY(104%);
    transition: transform 220ms ease;
    overflow-y: auto;
    box-shadow: 0 -18px 44px rgba(13, 45, 34, 0.24);
    padding: 16px 16px calc(22px + env(safe-area-inset-bottom));
    gap: 16px;
    border-radius: 26px 26px 0 0;
    border-right: 0;
    border-top: 1px solid rgba(39, 39, 42, 0.14);
  }

  .sidebar-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 6px;
  }

  .sidebar-mobile-header-copy {
    display: grid;
    gap: 2px;
  }

  .sidebar-mobile-header-copy span {
    font-size: 0.82rem;
    color: var(--text-dim);
  }

  .sidebar-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid rgba(39, 39, 42, 0.14);
    background: rgba(39, 39, 42, 0.1);
    color: #ecfdf5;
    font-size: 1.15rem;
  }

  body.nav-open .sidebar {
    transform: translateY(0);
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(10, 25, 20, 0.4);
    z-index: 60;
  }

  .main-content {
    margin-left: 0;
    padding: 10px 10px 88px;
  }

  .main-content-inner,
  .page-header {
    width: 100%;
  }

  .main-content-inner {
    gap: 10px;
  }

  .app-footer {
    display: none;
  }

  .gallery-grid,
  .masterdata-hero,
  .masterdata-layout,
  .masterdata-inline-create {
    grid-template-columns: 1fr;
  }

  .masterdata-hero,
  .page-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-header {
    display: grid;
    gap: 8px;
    padding: 12px 12px 13px;
    margin-bottom: 10px;
    background:
      radial-gradient(320px 180px at 0% 0%, rgba(193, 246, 219, 0.32), transparent 70%),
      rgba(39, 39, 42, 0.9);
    border: 1px solid rgba(39, 39, 42, 0.55);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .page-header .eyebrow {
    margin-bottom: 2px;
    font-size: 0.66rem;
    letter-spacing: 0.18em;
  }

  
.page-header h1 {
  font-size: clamp(2rem, 1.8rem + 1.5vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}


  .panel,
  .hero-card,
  .animals-empty-detail {
    padding: 14px;
    border-radius: 22px;
  }

  .dashboard-search-form {
    grid-template-columns: 1fr;
  }

  .dashboard-search-form input[type="search"],
  .dashboard-search-form .btn {
    height: 50px;
  }

  .dashboard-search-form input[type="search"] {
    font-size: 1rem;
    padding: 0 18px;
  }

  .resting-place-intro h2 {
    font-size: 1.45rem;
  }

  .animal-hero-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .animal-thumb {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .animal-hero-card {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
  }

  .animal-hero-profile {
    grid-column: 1;
    grid-row: 1;
  }

  .animal-hero-content {
    grid-column: 2;
    grid-row: 1;
    gap: 6px;
  }

  .animal-hero-head {
    align-items: start;
  }

  .hero-actions {
    display: inline-grid;
    grid-auto-flow: column;
    grid-auto-columns: 46px;
    width: auto;
    gap: 8px;
  }

  .profile-image-panel,
  .profile-image-frame,
  .animal-profile-image {
    width: 82px;
    height: 82px;
  }

  .animal-profile-image {
    border-radius: 16px;
  }

  .profile-upload-trigger.icon-only,
  .profile-delete-button {
    width: 34px;
    height: 34px;
  }

  .animal-hero-meta-card {
    border-radius: 12px;
    padding: 10px 11px;
  }

  .animal-vet-trigger {
    min-height: 100%;
  }

  .masterdata-inline-create .checkbox-line {
    white-space: normal;
  }

  .accordion-item {
    border-radius: 15px;
  }

  .accordion-item summary {
    padding: 11px 12px;
  }

  .accordion-content {
    padding: 12px;
  }

  .drawer-panel {
    width: 100%;
    height: min(92vh, 100%);
    padding: 16px 14px 10px;
    border-left: 0;
    border-top: 1px solid rgba(39, 39, 42, 0.5);
    border-radius: 26px 26px 0 0;
    box-shadow: 0 -20px 48px rgba(5, 40, 26, 0.22);
  }

  .drawer-header {
    padding-bottom: 12px;
  }

  .drawer-body {
    padding-right: 0;
  }

  .toast-viewport {
    top: 14px;
    right: 14px;
    left: 14px;
    width: auto;
  }
}

@media (max-width: 640px) {
  
.page-header h1 {
  font-size: clamp(2rem, 1.8rem + 1.5vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}


  .animals-summary-grid,
  .animal-hero-meta-grid,
  .resting-place-facts {
    grid-template-columns: 1fr;
  }

  .animal-hero-card {
    grid-template-columns: 1fr;
  }

  .animal-hero-profile,
  .animal-hero-content,
  .hero-actions {
    grid-column: 1;
  }

  .animal-hero-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .profile-image-panel,
  .profile-image-frame,
  .animal-profile-image {
    width: 112px;
    height: 112px;
  }

  .hero-actions {
    grid-auto-columns: 52px;
    justify-content: start;
  }

  .panel,
  .hero-card,
  .animals-empty-detail {
    padding: 13px;
  }
}



.bootstrap-app {
  --text-base: 0.91rem;
  --text-small: 0.82rem;
  --accordion-title: 0.98rem;
  --accordion-subtitle: 0.8rem;
}

.bootstrap-app .app-shell {
  display: flex;
  min-height: 100vh;
  align-items: stretch;
}

.bootstrap-app .app-sidebar {
  width: var(--sidebar-width);
  background: rgba(24, 24, 27, 0.4);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 0.75rem;
  color: #f4f4f5;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.4);
  position: fixed;
  inset: 0 auto 0 0;
  overflow-y: auto;
  z-index: 40;
}

.bootstrap-app .app-sidebar-brand,
.bootstrap-app .app-sidebar-brand-mobile {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.bootstrap-app .app-sidebar .brand-logo,
.bootstrap-app .app-mobile-offcanvas .brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(39, 39, 42, 0.12);
  padding: 0.45rem;
}

.bootstrap-app .app-sidebar-brand {
  margin: -0.85rem -0.75rem 0.8rem;
  padding: 0.7rem 0.75rem 0.8rem;
  border-radius: 0 0 1rem 0;
  background: rgba(39, 39, 42, 0.86);
  min-height: 76px;
  height: 76px;
  box-sizing: border-box;
}

.bootstrap-app .app-sidebar-brand-mobile {
  padding: 0.55rem 0.65rem;
  border-radius: 0 0 1rem 1rem;
  background: rgba(39, 39, 42, 0.86);
}

.bootstrap-app .app-sidebar-nav-wrap {
  flex: 1;
  overflow-y: auto;
  margin-top: 0.75rem;
}

.bootstrap-app .app-sidebar-footer {
  padding-top: 0.65rem;
  border-top: 1px solid rgba(39, 39, 42, 0.14);
  color: rgba(244, 244, 245, 0.92);
}

.bootstrap-app .app-sidebar-footer strong {
  display: block;
  color: #ffffff;
}

.bootstrap-app .app-sidebar-footer .small-label {
  color: rgba(212, 212, 216, 0.78);
}

.bootstrap-app .app-sidebar-footer span {
  color: rgba(228, 228, 231, 0.9);
}

.bootstrap-app .app-main {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-left: var(--sidebar-width);
}

@media (max-width: 991.98px) {
  .bootstrap-app .app-main {
    margin-left: 0;
  }
}

.bootstrap-app .main-content {
  margin-left: 0;
  padding: 0;
}

.bootstrap-app .app-main-container {
  padding: 0 0.85rem 1.1rem 0.6rem;
}

.bootstrap-app .page-header {
  margin-top: 0;
}

.bootstrap-app .page-header-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.35rem 0.75rem;
}

.bootstrap-app .page-header h1 {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.05;
}

.bootstrap-app .row.g-3,
.bootstrap-app .row.g-4 {
  --bs-gutter-x: 0.75rem;
  --bs-gutter-y: 0.75rem;
}

.bootstrap-app .vstack.gap-4 {
  gap: 1rem !important;
}

.bootstrap-app .vstack.gap-3 {
  gap: 0.75rem !important;
}

.bootstrap-app .p-4,
.bootstrap-app .card-body.p-4 {
  padding: 1rem !important;
}


.bootstrap-app .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.64rem;
  color: var(--muted);
  font-weight: 700;
}



.bootstrap-app .panel {
  padding: 1rem;
}

.bootstrap-app .form-section {
  display: grid;
  gap: 0.8rem;
}

.bootstrap-app .form-section > .help-copy {
  margin: 0;
}

.bootstrap-app .form-section {
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius-ui);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
}

.bootstrap-app .form-section-header {
  display: grid;
  gap: 0.28rem;
}

.bootstrap-app .form-section-header strong {
  color: var(--text-strong);
  font-size: 1rem;
}

.bootstrap-app .form-section-header p,
.bootstrap-app .form-section-header .help-copy {
  margin: 0;
}

.bootstrap-app .form-actions-copy {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 56ch;
}

.bootstrap-app .empty-state-card {
  display: grid;
  gap: 0.6rem;
  padding: 0.9rem 0.95rem;
  border-radius: var(--radius-ui);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.bootstrap-app .empty-state-card strong {
  color: var(--text-strong);
  font-size: 1rem;
}

.bootstrap-app .empty-state-card .empty-state {
  margin: 0;
}

.bootstrap-app .empty-state-card .empty-state strong,
.bootstrap-app .empty-state-card p,
.bootstrap-app .empty-state-card small {
  margin: 0;
}

.bootstrap-app .empty-state-card .form-actions {
  margin-top: 0.2rem;
}

.bootstrap-app .animal-hero-meta-card,
.bootstrap-app .animal-hero-meta-card strong {
  display: block;
  margin-bottom: 0.4rem;
}

.bootstrap-app .table-sub,
.bootstrap-app .help-copy,
.bootstrap-app .empty-state {
  color: var(--muted);
}

.bootstrap-app .accordion-item {
  border-radius: 12px;
  overflow: hidden;
}

.bootstrap-app .accordion-summary-main {
  min-width: 0;
}

.bootstrap-app .service-status-chip,
.bootstrap-app .setup-status-chip {
  min-width: 0;
  width: 100%;
  min-height: 2.15rem;
  padding: 0.42rem 0.78rem;
  border-radius: var(--radius-ui);
}
