@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   BRAND COLORS
   Primary:   #7c3aed  (Violet-600)
   Primary Dark: #5b21b6 (Violet-800)
   Accent:    #4f46e5  (Indigo-600)
   Sidebar:   #170f3a  (Deep Violet)
   Success:   #059669
   Danger:    #dc2626
   Warning:   #d97706
   Info:      #0284c7
   ========================================== */

/* ==========================================
   GLOBAL TYPOGRAPHY & BODY
   — NEVER apply font-family to * or <i>
     Icon fonts (FontAwesome, Themify) use
     font-family on <i>::before to render glyphs.
     Overriding with !important on * destroys icons.
   ========================================== */
body, p, h1, h2, h3, h4, h5, h6, span:not([class*="ti-"]):not([class*="fa"]),
.card, .modal-content, .form-control, .form-select, .form-label,
.btn:not(.btn-close), .table, .navigation, .select2-container,
input, select, textarea, label, a:not([class*="ti-"]):not([class*="fa"]),
td, th, .card-header, .card-body, .card-title, .dropdown-item,
.breadcrumb-item, .nav-link, .modal-title, .modal-body,
div:not([class*="ti-"]):not([class*="fa"]) {
  font-family: 'Outfit', sans-serif !important;
}

/* CRITICAL: Protect icon font elements — do NOT override their font-family.
   Font Awesome uses font-family: "Font Awesome 5 Free" on i::before
   Themify uses font-family: "themify" on i.ti-*::before
   Any !important here will break glyph rendering. */
i,
i::before,
i::after {
  font-family: unset;
}



body {
  background-color: #f5f3ff !important;
  color: #1e1b4b !important;
}

/* ==========================================
   CARD SYSTEM
   ========================================== */
.card {
  border: none !important;
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.05) !important;
  margin-bottom: 24px !important;
  background-color: #ffffff !important;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.08) !important;
  transform: translateY(-1px);
}

/* Card headers — clean white with color left-stripe */
.card-header {
  background: #ffffff !important;
  border-bottom: 1px solid #ede9fe !important;
  border-left: 4px solid #7c3aed !important;
  padding: 16px 22px !important;
  color: #1e1b4b !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.card-header *,
.card-header h5,
.card-header h6,
.card-header .card-title,
.card-header .mb-0,
.card-header.text-white,
.card-header.text-white *,
.card-header.bg-primary *,
.card-header.bg-success *,
.card-header.bg-warning *,
.card-header.bg-danger *,
.card-header.bg-dark * {
  color: #1e1b4b !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  margin: 0 !important;
}

.card-header.bg-success { border-left-color: #059669 !important; background: #fff !important; }
.card-header.bg-warning { border-left-color: #d97706 !important; background: #fff !important; }
.card-header.bg-danger  { border-left-color: #dc2626 !important; background: #fff !important; }
.card-header.bg-dark    { border-left-color: #1e1b4b !important; background: #fff !important; }
.card-header.bg-info    { border-left-color: #0284c7 !important; background: #fff !important; }
.card-header-gradient   { border-left-color: #7c3aed !important; background: #fff !important; }

/* ==========================================
   TABLES — Clean SaaS Style
   ========================================== */
.table {
  margin-bottom: 0 !important;
}

.table thead th,
.table thead tr,
.table thead tr th,
.table thead.table-dark th,
.table thead tr.bg-dark,
.table thead tr.bg-primary,
.table thead th.bg-primary,
.table thead th.bg-dark,
.table thead th.bg-danger {
  background: #f5f3ff !important;
  color: #6d28d9 !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  border-top: none !important;
  border-bottom: 2px solid #ede9fe !important;
  padding: 14px 20px !important;
}

.table tbody tr {
  transition: all 0.18s ease;
}
.table tbody tr:hover {
  background-color: #faf5ff !important;
}
.table tbody td {
  padding: 15px 20px !important;
  color: #3730a3 !important;
  font-weight: 500;
  vertical-align: middle !important;
  border-top: none !important;
  border-bottom: 1px solid #f3f0ff !important;
}

.table th, .table td {
  border-left: none !important;
  border-right: none !important;
}
.table-bordered, .table-bordered th, .table-bordered td {
  border: 1px solid #ede9fe !important;
}
.table-responsive { border: none !important; }

/* === BARE ICON LINKS in tables (no .btn class) === */
/* e.g. <a href="..."><i class="fa fa-eye"></i></a>  */
.table tbody td a:not(.btn) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #f5f3ff;
  text-decoration: none;
  margin: 0 2px;
  transition: all 0.2s ease;
  vertical-align: middle;
}
.table tbody td a:not(.btn):hover {
  background-color: #ede9fe;
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(124, 58, 237, 0.18);
}
/* Keep icon colours as set inline (text-primary, text-danger etc) */
.table tbody td a:not(.btn) i {
  font-size: 15px;
  color: inherit;
  margin: 0;
}

/* === OUTLINE BUTTON ICONS (Bootstrap btn-outline-*) in tables === */
/* Let Bootstrap handle colours; just smooth out hover & size */
.table tbody td .btn.rounded-circle {
  width: 34px !important;
  height: 34px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
}
.table tbody td .btn.rounded-circle:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12) !important;
}
.table tbody td .btn.rounded-circle i {
  font-size: 13px !important;
  margin: 0 !important;
}

/* ==========================================
   FORM CONTROLS
   ========================================== */
.form-control, .form-select, select, input[type="text"],
input[type="email"], input[type="password"], input[type="number"], textarea {
  border: 1.5px solid #ddd6fe !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  transition: all 0.2s ease !important;
  font-size: 14px !important;
  background-color: #ffffff !important;
  color: #1e1b4b !important;
}
.form-control:focus, .form-select:focus, select:focus,
input[type="text"]:focus, input[type="email"]:focus,
input[type="password"]:focus, input[type="number"]:focus, textarea:focus {
  border-color: #7c3aed !important;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12) !important;
  outline: none !important;
}

/* Input group rounding */
.input-group > :first-child { border-radius: 10px 0 0 10px !important; }
.input-group > :last-child  { border-radius: 0 10px 10px 0 !important; }
.input-group > :not(:first-child):not(:last-child) { border-radius: 0 !important; }

/* ==========================================
   BUTTONS
   ========================================== */

/* Base btn — only cosmetic overrides, NO border:none (kills btn-outline-* and btn-close) */
.btn {
  border-radius: 10px !important;
  font-weight: 600 !important;
  transition: all 0.2s ease !important;
  letter-spacing: 0.2px;
}

/* Exclude btn-close and icon-only buttons from padding/font-size overrides */
.btn:not(.btn-close):not(.btn-icon) {
  padding: 9px 20px !important;
  font-size: 14px !important;
}
.btn-sm:not(.btn-close):not(.rounded-circle) {
  padding: 6px 12px !important;
  font-size: 12px !important;
}

/* Solid filled buttons — no border needed */
.btn-primary {
  background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3) !important;
}
.btn-primary:hover, .btn-primary:focus {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4) !important;
  background: linear-gradient(135deg, #6d28d9 0%, #4338ca 100%) !important;
  color: #fff !important;
}

.btn-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25) !important;
}
.btn-success:hover { transform: translateY(-2px) !important; color: #fff !important; }

.btn-danger {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.25) !important;
}
.btn-danger:hover { transform: translateY(-2px) !important; color: #fff !important; }

.btn-warning {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.25) !important;
}
.btn-warning:hover { transform: translateY(-2px) !important; color: #fff !important; }

.btn-info {
  background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.25) !important;
}
.btn-info:hover { transform: translateY(-2px) !important; color: #fff !important; }

.btn-secondary {
  background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%) !important;
  color: #fff !important;
  border: none !important;
}
.btn-secondary:hover { transform: translateY(-2px) !important; color: #fff !important; }

.btn-dark {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%) !important;
  color: #fff !important;
  border: none !important;
}
.btn-dark:hover { transform: translateY(-2px) !important; color: #fff !important; }

.btn-light {
  background: #ffffff !important;
  color: #7c3aed !important;
  border: 1.5px solid #ddd6fe !important;
}
.btn-light:hover { background: #f5f3ff !important; color: #6d28d9 !important; }

/* Outline buttons — KEEP border intact, just restyle colours */
.btn-outline-primary {
  background: transparent !important;
  color: #7c3aed !important;
  border: 1.5px solid #7c3aed !important;
}
.btn-outline-primary:hover {
  background: #7c3aed !important;
  color: #fff !important;
  border-color: #7c3aed !important;
}

.btn-outline-success {
  background: transparent !important;
  color: #059669 !important;
  border: 1.5px solid #059669 !important;
}
.btn-outline-success:hover {
  background: #059669 !important;
  color: #fff !important;
}

.btn-outline-danger {
  background: transparent !important;
  color: #dc2626 !important;
  border: 1.5px solid #dc2626 !important;
}
.btn-outline-danger:hover {
  background: #dc2626 !important;
  color: #fff !important;
}

.btn-outline-warning {
  background: transparent !important;
  color: #d97706 !important;
  border: 1.5px solid #d97706 !important;
}
.btn-outline-warning:hover {
  background: #d97706 !important;
  color: #fff !important;
}

.btn-outline-info {
  background: transparent !important;
  color: #0284c7 !important;
  border: 1.5px solid #0284c7 !important;
}
.btn-outline-info:hover {
  background: #0284c7 !important;
  color: #fff !important;
}

.btn-outline-secondary {
  background: transparent !important;
  color: #6d28d9 !important;
  border: 1.5px solid #ddd6fe !important;
}
.btn-outline-secondary:hover {
  background: #f5f3ff !important;
  border-color: #7c3aed !important;
  color: #7c3aed !important;
}

/* btn-close — never override padding/border/font-size */
.btn-close {
  padding: unset !important;
  border: unset !important;
  background-color: transparent !important;
  font-size: unset !important;
  border-radius: 50% !important;
  opacity: 0.7;
}
.btn-close:hover { opacity: 1; transform: scale(1.1); }

/* ==========================================
   SIDEBAR NAVIGATION — Deep Violet
   ========================================== */
.navigation {
  background: linear-gradient(180deg, #170f3a 0%, #1e1b4b 100%) !important;
}

.navigation-icon-menu {
  background: #0f0a24 !important;
  border-right: 1px solid rgba(255,255,255,0.05) !important;
}

.navigation-icon-menu ul li a {
  color: #a78bfa !important;
  transition: all 0.2s ease;
  border-radius: 10px;
  margin: 4px;
}
.navigation-icon-menu ul li.active a,
.navigation-icon-menu ul li a:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #7c3aed, #4f46e5) !important;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4) !important;
}

.navigation-menu-body {
  background: linear-gradient(180deg, #170f3a 0%, #1e1b4b 100%) !important;
}

.navigation-menu-body ul li a {
  color: #c4b5fd !important;
  border-radius: 8px;
  margin: 1px 8px;
  padding: 9px 14px !important;
  transition: all 0.18s ease;
}
.navigation-menu-body ul li a:hover,
.navigation-menu-body ul li a.active {
  background: rgba(124, 58, 237, 0.15) !important;
  color: #ffffff !important;
}

.navigation-divider {
  color: #a78bfa !important;
  font-weight: 700 !important;
  letter-spacing: 1.2px !important;
  font-size: 10px !important;
  opacity: 0.75;
  margin-top: 16px !important;
}

/* ==========================================
   HEADER BAR — Clean White
   ========================================== */
.header {
  background: #ffffff !important;
  border-bottom: 1px solid #ede9fe !important;
  box-shadow: 0 2px 12px rgba(124, 58, 237, 0.05) !important;
  height: 64px !important;
}
.header-logo {
  background: #ffffff !important;
  border-right: 1px solid #ede9fe !important;
  border-bottom: 1px solid #ede9fe !important;
  height: 64px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.header-logo a span {
  color: #1e1b4b !important;
  font-weight: 700 !important;
}
.header-logo a span small {
  color: #7c3aed !important;
  font-weight: 500 !important;
}
.breadcrumb .breadcrumb-item a { color: #7c3aed !important; }
.breadcrumb .breadcrumb-item.active { color: #4f46e5 !important; }

/* Avatar/Profile circle */
.avatar-title.bg-primary {
  background: linear-gradient(135deg, #7c3aed, #4f46e5) !important;
}

/* ==========================================
   BADGES — Soft Colored Pills
   ========================================== */
.badge {
  font-weight: 600 !important;
  border-radius: 20px !important;
  padding: 5px 12px !important;
  font-size: 11px !important;
  letter-spacing: 0.3px !important;
}
.badge.bg-success, span.badge.bg-success {
  background: #d1fae5 !important;
  color: #065f46 !important;
  border: 1px solid #6ee7b7 !important;
}
.badge.bg-danger, span.badge.bg-danger {
  background: #fee2e2 !important;
  color: #991b1b !important;
  border: 1px solid #fca5a5 !important;
}
.badge.bg-warning, span.badge.bg-warning {
  background: #fef3c7 !important;
  color: #92400e !important;
  border: 1px solid #fcd34d !important;
}
.badge.bg-info, span.badge.bg-info {
  background: #e0f2fe !important;
  color: #075985 !important;
  border: 1px solid #7dd3fc !important;
}
.badge.bg-primary, span.badge.bg-primary {
  background: #ede9fe !important;
  color: #5b21b6 !important;
  border: 1px solid #c4b5fd !important;
}
.badge.bg-secondary, span.badge.bg-secondary {
  background: #f3f4f6 !important;
  color: #374151 !important;
  border: 1px solid #d1d5db !important;
}
.badge.bg-dark, span.badge.bg-dark {
  background: #f5f3ff !important;
  color: #3730a3 !important;
  border: 1px solid #ddd6fe !important;
}
.badge-shadow { box-shadow: 0 2px 8px rgba(124, 58, 237, 0.08) !important; }

/* ==========================================
   AUTOCOMPLETE DROPDOWN
   ========================================== */
.dropdown-search {
  position: absolute !important;
  background: #ffffff !important;
  border: 1.5px solid #ddd6fe !important;
  border-radius: 14px !important;
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.1) !important;
  max-height: 220px !important;
  overflow-y: auto !important;
  width: 100% !important;
  display: none;
  z-index: 1000 !important;
  padding: 6px 0 !important;
}
.dropdown-search-item,
.dropdown-search div {
  padding: 10px 16px !important;
  cursor: pointer !important;
  color: #3730a3 !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  transition: all 0.15s ease !important;
}
.dropdown-search-item:hover,
.dropdown-search div:hover {
  background: #f5f3ff !important;
  color: #7c3aed !important;
}

/* ==========================================
   SELECT2
   ========================================== */
.select2-container--default .select2-selection--single {
  border: 1.5px solid #ddd6fe !important;
  border-radius: 10px !important;
  height: 42px !important;
  padding: 5px 12px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #1e1b4b !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 28px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 40px !important;
}
.select2-dropdown {
  border: 1.5px solid #ddd6fe !important;
  border-radius: 12px !important;
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.1) !important;
  overflow: hidden !important;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: #7c3aed !important;
  color: #fff !important;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1.5px solid #ddd6fe !important;
  border-radius: 8px !important;
  padding: 6px 10px !important;
}

/* ==========================================
   DASHBOARD STAT CARDS (SLICK)
   ========================================== */
.slick-single-item .card.border,
.slick-single-item .card {
  border: 1.5px solid #ede9fe !important;
  border-radius: 14px !important;
  background: #ffffff !important;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.05) !important;
  transition: all 0.2s ease !important;
  padding: 8px !important;
}
.slick-single-item .card.border:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.1) !important;
  border-color: #c4b5fd !important;
}
.slick-single-item .card h2 {
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #1e1b4b !important;
}
.slick-single-item .card .font-size-11 {
  color: #6d28d9 !important;
  font-weight: 700 !important;
  font-size: 10px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
}
.slick-single-item .card .progress {
  height: 4px !important;
  border-radius: 10px !important;
  background: #ede9fe !important;
  margin-top: 10px !important;
}
.slick-single-item .card .progress-bar { border-radius: 10px !important; }

/* ==========================================
   ICON BLOCKS (SIDEBAR & STATS)
   ========================================== */
.icon-block {
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.icon-block.bg-info    { background: rgba(56, 189, 248, 0.12) !important; color: #0284c7 !important; }
.icon-block.bg-success { background: rgba(16, 185, 129, 0.12) !important; color: #059669 !important; }
.icon-block.bg-warning { background: rgba(245, 158, 11, 0.12) !important; color: #b45309 !important; }
.icon-block.bg-danger  { background: rgba(239, 68, 68, 0.12) !important;  color: #dc2626 !important; }
.icon-block.bg-primary { background: rgba(124, 58, 237, 0.12) !important; color: #7c3aed !important; }
.icon-block.bg-secondary { background: rgba(99, 102, 241, 0.10) !important; color: #4f46e5 !important; }
.icon-block.bg-dark    { background: rgba(30, 27, 75, 0.08) !important;   color: #1e1b4b !important; }

/* Sidebar submenu stat widgets */
.navigation-menu-body ul li a .icon-block {
  width: 30px !important;
  height: 30px !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  margin-right: 10px !important;
}
.navigation-menu-body ul li a h6 {
  font-size: 10px !important;
  font-weight: 600 !important;
  color: #a78bfa !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 0 !important;
}
.navigation-menu-body ul li a h4 {
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin-top: 2px !important;
}

/* Pastel background helpers */
.bg-primary-bright  { background: rgba(124, 58, 237, 0.08) !important; color: #6d28d9 !important; border: 1px solid rgba(124, 58, 237, 0.15) !important; border-radius: 12px; }
.bg-success-bright  { background: rgba(16, 185, 129, 0.08) !important; color: #059669 !important; border: 1px solid rgba(16, 185, 129, 0.15) !important; border-radius: 12px; }
.bg-danger-bright   { background: rgba(239, 68, 68, 0.08) !important;  color: #dc2626 !important; border: 1px solid rgba(239, 68, 68, 0.15) !important; border-radius: 12px; }
.bg-warning-bright  { background: rgba(245, 158, 11, 0.08) !important; color: #b45309 !important; border: 1px solid rgba(245, 158, 11, 0.15) !important; border-radius: 12px; }
.bg-secondary-bright { background: rgba(99, 102, 241, 0.08) !important; color: #4f46e5 !important; border: 1px solid rgba(99, 102, 241, 0.15) !important; border-radius: 12px; }
.bg-info-bright     { background: rgba(56, 189, 248, 0.08) !important; color: #0284c7 !important; border: 1px solid rgba(56, 189, 248, 0.15) !important; border-radius: 12px; }

/* ==========================================
   GLASSMORPHIC LOGIN PAGE
   ========================================== */
body.form-membership {
  background: linear-gradient(135deg, #0c0a1e 0%, #1e1b4b 45%, #4c1d95 100%) !important;
  min-height: 100vh;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

body.form-membership .form-wrapper {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-radius: 24px !important;
  padding: 44px !important;
  box-shadow: 0 30px 60px rgba(12, 10, 30, 0.35) !important;
  border: 1px solid rgba(167, 139, 250, 0.2) !important;
  width: 100%;
  max-width: 420px;
}

body.form-membership .form-wrapper .logo {
  border: 2.5px solid #7c3aed !important;
  border-radius: 18px !important;
  padding: 10px !important;
  background: #ffffff !important;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.2) !important;
  display: inline-block;
  margin-bottom: 20px !important;
}
body.form-membership .form-wrapper h4 {
  font-size: 22px !important;
  color: #1e1b4b !important;
  font-weight: 800 !important;
}
body.form-membership .form-wrapper h5 {
  color: #7c3aed !important;
  font-weight: 500 !important;
  margin-bottom: 24px !important;
}
body.form-membership .btn-primary {
  background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%) !important;
  border-radius: 12px !important;
  padding: 12px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35) !important;
}

/* ==========================================
   PULSE DOT ANIMATION
   ========================================== */
.pulse-dot {
  width: 6px; height: 6px;
  background: #f59e0b;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  animation: pulse-anim 1.6s infinite;
}
.pulse-dot-danger { background: #ef4444; }
@keyframes pulse-anim {
  0%   { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
  70%  { transform: scale(1);    box-shadow: 0 0 0 6px rgba(245, 158, 11, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}
