/* =========================================================
   VelvaMed CRM — Liquid Glass theme (Bootstrap 5)
   ========================================================= */

:root {
  /* Brand palette */
  --c-teal-deep: #165D74;
  --c-teal: #77C2C3;
  --c-peach: #FDCC95;
  --c-mauve: #D992C4;
  --c-navy: #42446F;

  --brand: #165D74;
  --brand-2: #77C2C3;
  --brand-dark: #165D74;
  --brand-deep: #165D74;
  --brand-soft: rgba(119, 194, 195, 0.22);
  --accent: #D992C4;
  --accent-2: #FDCC95;
  --rose: #D992C4;
  --ink: #42446F;
  --ink-soft: #54567f;
  --muted: #6b6d8f;
  --glass: rgba(255, 255, 255, 0.58);
  --glass-strong: rgba(255, 255, 255, 0.74);
  --glass-border: rgba(255, 255, 255, 0.58);
  --glass-border-soft: rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 10px 40px rgba(66, 68, 111, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.55) inset;
  --glass-shadow-lg: 0 24px 60px rgba(66, 68, 111, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.6) inset;
  --sidebar-w: 280px;
  --radius: 1.15rem;
  --radius-sm: 0.85rem;
  --radius-pill: 999px;
  --blur: 18px;
  --blur-strong: 28px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--ink);
  background: #f4f1f7;
  background-image:
    radial-gradient(1200px 700px at -10% -20%, rgba(119, 194, 195, 0.42), transparent 55%),
    radial-gradient(900px 600px at 110% 0%, rgba(217, 146, 196, 0.28), transparent 50%),
    radial-gradient(800px 500px at 50% 110%, rgba(253, 204, 149, 0.32), transparent 55%),
    linear-gradient(160deg, #eef8f8 0%, #f7f1fa 45%, #fff6eb 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.7;
}

body::before {
  width: 420px;
  height: 420px;
  top: 12%;
  right: 8%;
  background: radial-gradient(circle, rgba(119, 194, 195, 0.5), transparent 70%);
  animation: floatA 14s ease-in-out infinite;
}

body::after {
  width: 360px;
  height: 360px;
  bottom: 8%;
  left: 5%;
  background: radial-gradient(circle, rgba(217, 146, 196, 0.42), transparent 70%);
  animation: floatB 18s ease-in-out infinite;
}

@keyframes floatA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 24px) scale(1.05); }
}

@keyframes floatB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -20px) scale(1.08); }
}

a {
  color: var(--brand-dark);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--brand);
}

/* ---------- Glass surfaces ---------- */

.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(var(--blur)) saturate(160%);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(160%);
}

.glass-strong {
  background: var(--glass-strong);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow-lg);
  backdrop-filter: blur(var(--blur-strong)) saturate(170%);
  -webkit-backdrop-filter: blur(var(--blur-strong)) saturate(170%);
}

/* ---------- App shell ---------- */

.app-shell {
  display: flex;
  min-height: 100vh;
  position: relative;
}

.sidebar {
  width: var(--sidebar-w);
  margin: 0.85rem 0 0.85rem 0.85rem;
  padding: 1.15rem 0.95rem;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(
      165deg,
      rgba(22, 93, 116, 0.9) 0%,
      rgba(66, 68, 111, 0.88) 55%,
      rgba(22, 93, 116, 0.82) 100%
    ),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(119, 194, 195, 0.28);
  box-shadow: var(--glass-shadow-lg), 0 0 0 1px rgba(22, 93, 116, 0.15);
  backdrop-filter: blur(var(--blur-strong)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--blur-strong)) saturate(180%);
  color: #ecfeff;
  position: sticky;
  top: 0.85rem;
  height: calc(100vh - 1.7rem);
  overflow-y: auto;
  flex-shrink: 0;
  z-index: 40;
}

.sidebar::-webkit-scrollbar {
  width: 6px;
}
.sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 99px;
}

.sidebar .brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.45rem 0.65rem 1.15rem;
  margin-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.brand-text {
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-size: 1rem;
}

.brand-text small {
  display: block;
  font-weight: 500;
  opacity: 0.75;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  margin-top: 0.1rem;
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.side-nav-section {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.55;
  font-weight: 700;
  padding: 0.85rem 0.85rem 0.35rem;
}

.side-nav-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(236, 254, 255, 0.88) !important;
  padding: 0.72rem 0.85rem;
  border-radius: 12px;
  font-weight: 550;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: all 0.2s var(--ease);
}

.side-nav-link i {
  font-size: 1.1rem;
  width: 1.25rem;
  text-align: center;
  opacity: 0.9;
}

.side-nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.08);
}

.side-nav-link.active {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.1));
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.topbar {
  margin: 0.85rem 0.85rem 0;
  padding: 0.75rem 1.15rem;
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: sticky;
  top: 0.85rem;
  z-index: 30;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(var(--blur-strong)) saturate(170%);
  -webkit-backdrop-filter: blur(var(--blur-strong)) saturate(170%);
}

.topbar-title {
  font-weight: 750;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
  color: var(--ink);
}

.content {
  padding: 1.15rem 0.85rem 1.5rem;
}

.page-title {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.page-subtitle {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 0.2rem;
}

/* ---------- Cards & stats ---------- */

.card {
  background: rgba(255, 255, 255, 0.58) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--glass-shadow) !important;
  backdrop-filter: blur(var(--blur)) saturate(160%);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(160%);
  overflow: hidden;
}

.card-body {
  padding: 1.25rem 1.35rem;
}

.card-header {
  background: rgba(255, 255, 255, 0.35) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35) !important;
  padding: 0.95rem 1.35rem;
  font-weight: 700;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.15rem;
}

.stat-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(var(--blur)) saturate(160%);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(160%);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--glass-shadow-lg);
}

.stat-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(119, 194, 195, 0.22), transparent 70%);
  pointer-events: none;
}

.stat-card .stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
  background: linear-gradient(145deg, rgba(119, 194, 195, 0.22), rgba(253, 204, 149, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--brand-dark);
  font-size: 1.1rem;
}

.stat-card .label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.stat-card .value {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, #165D74 0%, #77C2C3 55%, #D992C4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}

/* ---------- Tables ---------- */

.table {
  --bs-table-bg: transparent;
  --bs-table-hover-bg: rgba(119, 194, 195, 0.12);
  color: var(--ink);
  margin-bottom: 0;
}

.table > :not(caption) > * > * {
  padding: 0.9rem 1rem;
  vertical-align: middle;
  border-bottom-color: rgba(148, 163, 184, 0.18);
  background: transparent;
}

.table thead th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.35) !important;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2) !important;
  white-space: nowrap;
}

.table-responsive {
  border-radius: 0 0 var(--radius) var(--radius);
}

/* ---------- Buttons ---------- */

.btn {
  border-radius: 12px;
  font-weight: 650;
  letter-spacing: -0.01em;
  padding: 0.55rem 1rem;
  transition: transform 0.15s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-brand {
  --bs-btn-color: #fff;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: transparent;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: transparent;
  --bs-btn-active-border-color: transparent;
  background-image: linear-gradient(135deg, #165D74 0%, #1a6f8a 45%, #77C2C3 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(22, 93, 116, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-brand:hover {
  filter: brightness(1.05);
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(22, 93, 116, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-soft {
  background: rgba(119, 194, 195, 0.18) !important;
  color: var(--brand-deep) !important;
  border: 1px solid rgba(119, 194, 195, 0.35) !important;
  box-shadow: 0 6px 16px rgba(66, 68, 111, 0.06);
  backdrop-filter: blur(10px);
}

.btn-soft:hover {
  background: rgba(253, 204, 149, 0.35) !important;
  color: var(--c-navy) !important;
  border-color: rgba(253, 204, 149, 0.55) !important;
}

.btn-outline-secondary,
.btn-outline-danger {
  background: rgba(255, 255, 255, 0.4) !important;
  backdrop-filter: blur(8px);
  border-color: rgba(148, 163, 184, 0.35) !important;
}

.btn-outline-secondary {
  color: var(--ink-soft) !important;
}

.btn-outline-secondary:hover {
  background: rgba(255, 255, 255, 0.75) !important;
  color: var(--ink) !important;
  border-color: rgba(148, 163, 184, 0.5) !important;
}

.btn-outline-danger {
  color: #e11d48 !important;
  border-color: rgba(251, 113, 133, 0.4) !important;
}

.btn-outline-danger:hover {
  background: rgba(255, 228, 230, 0.7) !important;
  color: #be123c !important;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

/* ---------- Forms ---------- */

.form-label {
  font-weight: 650;
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin-bottom: 0.35rem;
}

.form-control,
.form-select {
  border-radius: 12px !important;
  border: 1px solid rgba(148, 163, 184, 0.35) !important;
  background: rgba(255, 255, 255, 0.65) !important;
  backdrop-filter: blur(8px);
  padding: 0.7rem 0.95rem;
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(22, 93, 116, 0.55) !important;
  box-shadow: 0 0 0 0.22rem rgba(119, 194, 195, 0.18) !important;
  background: rgba(255, 255, 255, 0.88) !important;
}

.form-control::placeholder {
  color: #8b8dad;
}

.form-check-input:checked {
  background-color: var(--brand);
  border-color: var(--brand);
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(119, 194, 195, 0.22);
}

.input-group-text {
  background: rgba(255, 255, 255, 0.65) !important;
  border-color: rgba(148, 163, 184, 0.35) !important;
  color: var(--muted);
}

.input-group .form-control:focus {
  z-index: 3;
}

/* ---------- Auth ---------- */

.auth-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
  position: relative;
}

.auth-wrap > div {
  width: 100%;
  max-width: 440px;
}

.auth-card {
  width: 100%;
  border-radius: 1.5rem;
  padding: 2rem 1.85rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--glass-shadow-lg);
  backdrop-filter: blur(var(--blur-strong)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--blur-strong)) saturate(180%);
}

.auth-card h1 {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.3rem;
}

.auth-card .subtitle {
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.auth-card .brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(145deg, #165D74 0%, #77C2C3 55%, #D992C4 100%);
  color: #fff;
  font-size: 1.1rem;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Alerts ---------- */

.alert {
  border-radius: 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(66, 68, 111, 0.07);
}

.alert-success {
  background: rgba(209, 250, 229, 0.75) !important;
  color: #065f46 !important;
}

.alert-danger {
  background: rgba(254, 226, 226, 0.8) !important;
  color: #991b1b !important;
}

/* ---------- Badges ---------- */

.badge {
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.4em 0.7em;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
}

.badge.text-bg-success {
  background: rgba(119, 194, 195, 0.3) !important;
  color: #165D74 !important;
}
.badge.text-bg-primary {
  background: rgba(22, 93, 116, 0.14) !important;
  color: #165D74 !important;
}
.badge.text-bg-info {
  background: rgba(119, 194, 195, 0.28) !important;
  color: #165D74 !important;
}
.badge.text-bg-warning {
  background: rgba(253, 204, 149, 0.4) !important;
  color: #8a5a20 !important;
}
.badge.text-bg-danger {
  background: rgba(217, 146, 196, 0.28) !important;
  color: #8a3d72 !important;
}
.badge.text-bg-secondary {
  background: rgba(66, 68, 111, 0.12) !important;
  color: #42446F !important;
}
.badge.text-bg-dark {
  background: rgba(66, 68, 111, 0.2) !important;
  color: #42446F !important;
}

/* ---------- Misc ---------- */

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.user-chip {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--brand-deep);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(204, 251, 241, 0.75));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 6px 16px rgba(119, 194, 195, 0.18);
}

.color-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.4rem;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.7);
}

.empty-state {
  text-align: center;
  padding: 2.75rem 1rem;
  color: var(--muted);
  font-weight: 500;
}

.empty-state i {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 0.6rem;
  opacity: 0.55;
}

.list-group-item {
  background: transparent !important;
  border-color: rgba(148, 163, 184, 0.15) !important;
}

.list-group-item-action:hover {
  background: rgba(119, 194, 195, 0.12) !important;
}

.signature-pad-wrap {
  border: 1.5px dashed rgba(22, 93, 116, 0.36);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.signature-pad-wrap canvas {
  width: 100%;
  height: 180px;
  display: block;
  touch-action: none;
  cursor: crosshair;
}

.agreement-body {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  line-height: 1.7;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(var(--blur));
}

.agreement-body h2 {
  font-size: 1.25rem;
  margin-top: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.quick-action {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--ink) !important;
  font-weight: 650;
  transition: all 0.2s var(--ease);
}

.quick-action i {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(119, 194, 195, 0.2), rgba(253, 204, 149, 0.25));
  color: var(--brand-dark);
}

.quick-action:hover {
  background: rgba(255, 255, 255, 0.75);
  transform: translateX(3px);
  color: var(--brand-dark) !important;
}

.sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(66, 68, 111, 0.4);
  backdrop-filter: blur(4px);
  z-index: 35;
}

.sidebar-backdrop.show {
  display: block;
}

/* Bootstrap list-group in glass cards */
.card .list-group-flush > .list-group-item:first-child {
  border-top: 0;
}

/* Form-control-color */
.form-control-color {
  min-height: 2.6rem;
  padding: 0.3rem;
}

/* ---------- Responsive ---------- */

@media (max-width: 1200px) {
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .sidebar {
    position: fixed;
    left: -110%;
    top: 0.75rem;
    height: calc(100vh - 1.5rem);
    margin: 0 0 0 0.75rem;
    transition: left 0.28s var(--ease);
    z-index: 45;
  }

  .sidebar.open {
    left: 0;
  }

  .topbar {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .content {
    padding: 1rem 0.75rem 1.25rem;
  }
}

@media (max-width: 576px) {
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: 1.3rem;
  }

  .auth-card {
    padding: 1.5rem 1.25rem;
  }
}

/* ---------- Audit footer ---------- */

.audit-footer {
  border-top: 1px solid rgba(119, 194, 195, 0.28);
  margin-top: 1.25rem;
  padding-top: 0.85rem !important;
  font-size: 0.82rem;
}

.audit-footer strong {
  font-weight: 700;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after {
    animation: none;
  }

  .stat-card,
  .btn,
  .side-nav-link,
  .quick-action {
    transition: none;
  }
}
