/* =========================
   EAN-BID PRO Design System
   (Common CSS)
   Version: 2026-03-02
   ========================= */

/* 1) Design Tokens */
:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f8fafc;

  --primary: #4f46e5;
  --primary-dark: #3730a3;
  --accent: #10b981;

  --text-main: #0f172a;
  --text-sub: #64748b;

  --border: #e2e8f0;
  --glass: rgba(255, 255, 255, .86);

  --card-bg: #ffffff;

  --radius: 20px;
  --radius-lg: 24px;

  --container: 90%;
  --gutter: 40px;

  --sidebar-w: 270px;
  --sidebar-w-collapsed: 80px;
  --topbar-h: 60px;
}

/* 2) Global Base */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Noto Sans KR', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 15% 15%, rgba(79, 70, 229, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(16, 185, 129, 0.05) 0%, transparent 40%),
    var(--bg);
  overflow-y: auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* 3) Layout: sidebar pushes content (works for all pages without wrapper) */
body.has-sidebar {
  padding-left: var(--sidebar-w);
  transition: padding-left .35s cubic-bezier(.4, 0, .2, 1);
}

body.has-sidebar.sidebar-collapsed {
  padding-left: var(--sidebar-w-collapsed);
}

@media(max-width:1024px) {
  body.has-sidebar {
    padding-left: 0;
    padding-top: var(--topbar-h);
  }
}

/* 4) Page container */
main,
.page {
  padding: 36px var(--gutter);
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  flex-grow: 1;
}

.app-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

@media(max-width:600px) {

  main,
  .page {
    padding: 24px 18px;
  }
}

/* 5) Dashboard Header */
.dashboard-header {
  padding: 0 0 22px 0;
  text-align: left;
}

.dashboard-header h1,
.h1 {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1px;
  margin: 0;
}

.dashboard-header p,
.subhead {
  color: var(--text-sub);
  margin-top: 10px;
  font-size: 18px;
}

@media(max-width:900px) {

  .dashboard-header h1,
  .h1 {
    font-size: 32px;
  }
}

@media(max-width:600px) {

  .dashboard-header h1,
  .h1 {
    font-size: 28px;
  }

  .dashboard-header p,
  .subhead {
    font-size: 15px;
  }
}

/* 6) Cards (single rule) */
.kpi-card,
.chart-card,
.notice-card,
.algo-master-card,
.video-card,
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.p24 {
  padding: 24px;
}

.p32 {
  padding: 32px;
}

/* =========================
   EAN-BID Buttons (Common)
   ========================= */
.btn {
  appearance: none;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-main);
  font-weight: 800;
  font-size: 13px;
  line-height: 1;
  padding: 10px 14px;
  border-radius: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  white-space: nowrap;
}

.btn i {
  font-size: 14px;
  opacity: .9;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(79, 70, 229, .35);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.06);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 12px rgba(15, 23, 42, 0.05);
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.14), 0 10px 18px rgba(15, 23, 42, 0.06);
  border-color: rgba(79, 70, 229, .55);
}

.btn-primary {
  background: linear-gradient(180deg, rgba(79, 70, 229, 1) 0%, rgba(67, 56, 202, 1) 100%);
  border-color: rgba(79, 70, 229, .7);
  color: #fff;
  box-shadow: 0 12px 22px rgba(79, 70, 229, 0.22);
}

.btn-primary:hover {
  border-color: rgba(79, 70, 229, .9);
  box-shadow: 0 18px 30px rgba(79, 70, 229, 0.26);
}

.btn-outline {
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(8px);
}

.btn-outline.is-active {
  background: rgba(79, 70, 229, 0.08);
  border-color: rgba(79, 70, 229, 0.45);
  color: var(--primary);
}

.btn-ghost {
  background: #fff;
  border-color: var(--border);
  color: var(--text-sub);
}

.btn-ghost:hover {
  color: var(--primary);
  background: rgba(79, 70, 229, 0.06);
  border-color: rgba(79, 70, 229, 0.25);
}

/* 버튼 사이즈 옵션(필요시) */
.btn-sm {
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 12px;
}

.btn-lg {
  padding: 12px 18px;
  border-radius: 16px;
  font-size: 14px;
}

/* 7) KPI */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  width: 100%;
  margin-bottom: 32px;
}

.kpi-grid .card,
.kpi-card {
  padding: 24px;
  backdrop-filter: blur(20px);
  transition: .25s ease;
  text-align: left;
}

.kpi-grid .card:hover,
.kpi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 70, 229, .45);
  box-shadow: 0 20px 40px rgba(79, 70, 229, .14);
}

.kpi-title,
.kpi-card span {
  font-size: 13px;
  color: var(--text-sub);
  font-weight: 700;
}

.kpi-value,
.kpi-card h2 {
  font-size: 30px;
  margin: 10px 0 10px;
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.kpi-note,
.kpi-card small {
  color: var(--text-sub);
  font-weight: 700;
  background: rgba(15, 23, 42, 0.05);
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-block;
  font-size: 13px;
}

/* Responsive KPI */
@media (max-width: 1100px) {
  .kpi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

/* 8) Chart / Sections */
.chart-section,
.notice-section,
.algo-master-container,
.video-section,
.section {
  width: 100%;
  margin-bottom: 32px;
}

.chart-card {
  padding: 32px;
  text-align: left;
}

.notice-card {
  padding: 32px;
  text-align: left;
}

.algo-master-card {
  padding: 32px;
  text-align: left;
}

.video-card {
  padding: 32px;
  text-align: left;
}

.notice-card h3,
.chart-card h3,
.algo-master-card h3,
.video-card h3,
.section-title {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.link-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: .2s ease;
  padding: 6px 12px;
  border-radius: 8px;
}

.link-more:hover {
  background: rgba(79, 70, 229, 0.08);
  color: var(--primary-dark);
}

/* 9) Table */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.notice-card table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.notice-card th,
.notice-card td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.notice-card th {
  color: var(--text-sub);
  font-weight: 800;
  font-size: 13px;
}

.notice-card td {
  font-weight: 700;
  font-size: 14px;
}

@media(max-width:600px) {

  .notice-card th,
  .notice-card td {
    padding: 12px 8px;
    font-size: 13px;
  }
}

/* 10) Algorithm panel */
.algo-grid-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 20px;
}

@media (max-width: 1100px) {
  .algo-grid-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .algo-grid-inner {
    grid-template-columns: 1fr;
  }
}

.algo-item {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  padding: 22px;
  transition: .25s ease;
}

.algo-item:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 70, 229, 0.30);
  background: rgba(79, 70, 229, 0.03);
}

.algo-item .algo-type {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 12px;
}

.algo-item .algo-type.basic {
  background: #f1f5f9;
  color: #475569;
}

.algo-item .algo-type.ai {
  background: rgba(79, 70, 229, 0.12);
  color: var(--primary);
}

.algo-item h4 {
  font-size: 16px;
  font-weight: 900;
  color: var(--text-main);
  margin: 0 0 10px;
  word-break: keep-all;
}

.algo-item p {
  font-size: 13px;
  color: var(--text-sub);
  margin: 0;
  line-height: 1.55;
  word-break: keep-all;
}

/* 11) Status pill (can reuse in future) */
.status-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  font-weight: 700;
}

.status-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.status-ok {
  color: var(--accent);
  font-weight: 900;
  background: rgba(16, 185, 129, 0.12);
  padding: 4px 12px;
  border-radius: 999px;
}

/* 12) Video */
.video-wrapper {
  position: relative;
  margin-top: 16px;
}

.video-wrapper video {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.12);
}

/* 13) Footer */
footer,
.footer {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding: 28px 0;
  width: 100%;
}

.footer-content,
.footer-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  text-align: left;
  padding: 0 var(--gutter);
}

.footer-logo {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--text-main);
  margin-bottom: 10px;
  display: block;
}

.footer-info {
  color: var(--text-sub);
  font-size: 13px;
  line-height: 1.8;
}

.footer-copyright {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 12px;
  color: #94a3b8;
}

/* =========================
   Sidebar / Navigation
   (from top_nav.php)
   ========================= */

.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border-right: 1px solid #eef2f7;
  transition: width .35s cubic-bezier(.4, 0, .2, 1), transform .5s cubic-bezier(.16, 1, .3, 1), opacity .5s ease;
  z-index: 2000;
  display: flex;
  flex-direction: column;
}

.sidebar.collapsed {
  width: var(--sidebar-w-collapsed);
}

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

.sidebar-header .logo img {
  height: 38px;
  width: auto;
  transition: .3s cubic-bezier(.16, 1, .3, 1);
}

.sidebar.collapsed .sidebar-header .logo img {
  opacity: 0;
  pointer-events: none;
}

.collapse-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--text-sub);
  transition: .2s;
}

.collapse-btn:hover {
  color: var(--text-main);
}

.sidebar.collapsed .collapse-btn {
  transform: rotate(180deg);
  margin: 0 auto;
}

.sidebar-menu {
  padding: 10px 14px;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
}

.sidebar-menu::-webkit-scrollbar {
  width: 4px;
}

.sidebar-menu::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.menu-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: none;
  background: none;
  cursor: pointer;
  font-weight: 800;
  color: var(--text-sub);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition: all .25s ease;
  text-align: left;
}

.menu-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(79, 70, 229, .08), transparent 70%);
  transform: translateX(-100%);
  transition: transform .6s cubic-bezier(.22, 1, .36, 1);
}

.menu-item:hover::before {
  transform: translateX(100%);
}

.menu-item i:first-child {
  font-size: 18px;
  width: 20px;
  text-align: center;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), color .2s ease;
}

.menu-item:hover {
  background: rgba(79, 70, 229, 0.06);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.08);
  transform: translateX(4px);
}

.menu-item:hover i:first-child {
  transform: scale(1.14);
}

.sidebar.collapsed .menu-item span,
.sidebar.collapsed .menu-item .arrow {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.sidebar.collapsed .menu-item:hover::after {
  content: attr(data-menu);
  position: absolute;
  left: 90px;
  background: #111827;
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 3000;
}

.sidebar.collapsed .menu-item:hover {
  transform: none;
}

.menu-item.active {
  color: var(--primary);
}

.active-pill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #eef2ff, #f5f3ff);
  border-radius: 14px;
  opacity: 0;
  transform: scale(.98);
  transition: all .35s cubic-bezier(.22, 1, .36, 1);
  z-index: -1;
}

.menu-item.active .active-pill {
  opacity: 1;
  transform: scale(1);
}

.arrow {
  margin-left: auto;
  transition: transform .3s ease;
  font-size: 12px;
}

.menu-item.active .arrow {
  transform: rotate(180deg);
}

.submenu {
  overflow: hidden;
  height: 0;
  transition: height .5s cubic-bezier(.22, 1, .36, 1);
  padding-left: 52px;
  will-change: height;
}

.sidebar.collapsed .submenu {
  display: none !important;
}

.submenu a {
  display: block;
  padding: 8px 0;
  color: var(--text-sub);
  text-decoration: none;
  font-size: 14px;
  opacity: 0;
  transform: translateY(-8px);
  transition: color .25s ease;
}

.submenu.open a {
  animation: submenuFade .4s cubic-bezier(.16, 1, .3, 1) forwards;
}

.submenu.open a:nth-child(1) {
  animation-delay: .05s;
}

.submenu.open a:nth-child(2) {
  animation-delay: .09s;
}

.submenu.open a:nth-child(3) {
  animation-delay: .13s;
}

.submenu.open a:nth-child(4) {
  animation-delay: .17s;
}

.submenu.open a:nth-child(5) {
  animation-delay: .21s;
}

@keyframes submenuFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.submenu a:hover {
  color: var(--text-main);
}

.submenu a.on {
  color: var(--primary);
  font-weight: 900;
}

/* =========================
   EAN-BID Modals (Common)
   ========================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 5000;
  padding: 20px;
}

.modal-overlay.active {
  display: flex !important;
}

.modal-content {
  background: var(--surface);
  border-radius: 24px;
  padding: 32px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  position: relative;
  text-align: left;
  animation: modalEnter 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalEnter {
  from {
    transform: scale(0.9) translateY(20px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* Modal Helpers */
.maxw-420 {
  max-width: 420px !important;
}

.maxw-600 {
  max-width: 600px !important;
}

/* Modal Inner Utilities */
.row-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mb-6 {
  margin-bottom: 24px;
}

.meta-top {
  font-size: 14px;
  color: var(--text-sub);
  margin-bottom: 12px;
  font-weight: 500;
}

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

/* Exclude List Specific Styles (Reusable List) */
.exclude-list-container {
  max-height: 420px;
  overflow-y: auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  margin: 20px 0;
  background: var(--surface-2);
}

.exclude-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  transition: .15s ease;
}

.exclude-item:last-child {
  border-bottom: none;
}

.exclude-item:hover {
  background: #fff;
}

.exclude-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--primary);
}

.exclude-info {
  flex: 1;
  text-align: left;
  min-width: 0;
}

.exclude-bid-nm {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.exclude-inst-nm {
  font-size: 12px;
  color: var(--text-sub);
  margin-top: 4px;
  font-weight: 600;
}

.exclude-empty {
  padding: 60px;
  text-align: center;
  color: var(--text-sub);
  font-style: italic;
  font-weight: 600;
}

/* =========================
   Pagination (Common)
   ========================= */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  margin-bottom: 40px;
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid var(--border);
  color: var(--text-main);
  font-weight: 700;
  text-decoration: none;
  transition: .2s cubic-bezier(.4, 0, .2, 1);
  background: var(--surface);
}

.page-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.12);
}

.page-link.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 8px 16px rgba(79, 70, 229, 0.24);
}

.sep-muted {
  display: flex;
  align-items: center;
  color: var(--text-sub);
  font-weight: 800;
}

.menu-item::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(79, 70, 229, .3);
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}

.menu-item.ripple::after {
  animation: ripple .6s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: .6;
  }

  100% {
    transform: scale(20);
    opacity: 0;
  }
}

.user-profile {
  padding: 22px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-main);
  background: #fff;
  font-weight: 900;
  font-size: 14px;
}

.user-profile i.fa-user-circle {
  font-size: 32px;
  color: #cbd5e1;
}

.sidebar.collapsed .user-profile span {
  display: none;
}

/* Mobile topbar */
.mobile-topbar {
  display: none;
  height: var(--topbar-h);
  background: #fff;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid #e5e7eb;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.mobile-topbar .hamburger {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-main);
  cursor: pointer;
  padding: 8px;
}

.mobile-topbar .mobile-logo {
  font-weight: 900;
  font-size: 18px;
  color: var(--primary);
  margin-left: 12px;
}

.sidebar-overlay {
  display: none;
}

@media(max-width:1024px) {
  .mobile-topbar {
    display: flex;
  }

  .sidebar {
    transform: translateX(-100%) scale(.98);
    opacity: 0;
  }

  .sidebar.open {
    transform: translateX(0) scale(1);
    opacity: 1;
  }

  .sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .5);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 1500;
    display: block;
  }

  .sidebar-overlay.show {
    opacity: 1;
    pointer-events: auto;
  }
}

/* Notification modal */
.noti-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.noti-modal {
  background: #fff;
  width: 450px;
  max-width: calc(100vw - 24px);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  text-align: center;
  animation: modalPop .4s cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes modalPop {
  from {
    transform: scale(.8) translateY(20px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.noti-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.noti-icon.new_bid {
  background: #eef2ff;
  color: var(--primary);
}

.noti-icon.new_win {
  background: #f0fdf4;
  color: var(--accent);
}

.noti-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 15px;
}

.noti-body {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.6;
  margin-bottom: 25px;
  word-break: keep-all;
}

.noti-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-weight: 900;
  text-decoration: none;
  transition: .2s;
}

.noti-btn.primary {
  background: var(--primary);
  color: #fff;
  margin-bottom: 10px;
}

.noti-btn.primary:hover {
  background: #4338ca;
  transform: translateY(-2px);
}

.noti-btn.secondary {
  background: #f1f5f9;
  color: #475569;
}

.noti-btn.secondary:hover {
  background: #e2e8f0;
}