:root {
  --bm-primary: #1B224F;
  --bm-primary-dark: #362BC4;
  --bm-primary-soft: #EEEBFF;
  --bm-ink: #14151F;
  --bm-muted: #6B7280;
  --bm-bg: #FFFFFF;
  --bm-surface: #F6F6FB;
  --bm-border: #E8E8F1;
  --bm-accent: #FF5A67;
  --bm-radius: 12px;
  --bm-radius-pill: 5px;
  --bm-nav-h: 72px;
  --bm-ink-indigo: #17204A;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--bm-ink);
  background: var(--bm-surface);
}

.bm-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--bm-nav-h);
  background: var(--bm-bg);
  border-bottom: 1px solid var(--bm-border);
}

.bm-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.bm-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.bm-brand .mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--bm-primary), #8a7cff);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.bm-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
.bm-links a {
  display: block;
  padding: 9px 16px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--bm-muted);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.bm-links a:hover {
  background: var(--bm-surface);
  color: var(--bm-ink);
}
.bm-links a.active {
  background: var(--bm-primary-soft);
  color: var(--bm-primary-dark);
}

.bm-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bm-surface);
  border: 1px solid var(--bm-border);
  border-radius: 5px;
  padding: 8px 14px;
  width: 220px;
  color: var(--bm-muted);
  flex-shrink: 0;
}
.bm-search input {
  border: 0;
  background: transparent;
  outline: 0;
  font-size: 14px;
  width: 100%;
  font-family: inherit;
  color: var(--bm-ink);
}

.bm-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-left: auto;
}

.bm-hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--bm-border);
  background: var(--bm-bg);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.bm-hamburger span {
  width: 18px;
  height: 2px;
  background: var(--bm-ink);
  border-radius: 2px;
  transition: all 0.2s;
}

@media (max-width: 991.98px) {
  .bm-links,
  .bm-search {
    display: none;
  }
  .bm-hamburger {
    display: flex;
  }
  .bm-avatar-desktop {
    display: none;
  }
  .bm-pop.mobile-notif {
    position: fixed;
    top: var(--bm-nav-h);
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }
}
@media (min-width: 992px) {
  .bm-mobile-only {
    display: none;
  }
}
.icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: var(--bm-ink);
  font-size: 18px;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: background 0.15s;
}
.icon-btn:hover {
  background: var(--bm-surface);
}

.dot-badge {
  position: absolute;
  top: 8px;
  right: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bm-accent);
  border: 2px solid var(--bm-bg);
}

.avatar-ring {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--bm-primary-soft);
  padding: 1px;
  cursor: pointer;
}

.avatar-sm {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.bm-pop {
  position: absolute;
  top: calc(var(--bm-nav-h) - 8px);
  right: 0;
  width: 340px;
  background: var(--bm-bg);
  border: 1px solid var(--bm-border);
  border-radius: var(--bm-radius);
  box-shadow: 0 16px 40px rgba(20, 21, 31, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.15s, transform 0.15s;
}
.bm-pop.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.bm-pop {
  z-index: 1100;
  overflow: hidden;
}

.bm-pop-head {
  padding: 14px 16px;
  border-bottom: 1px solid var(--bm-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bm-pop-head strong {
  font-size: 14.5px;
}
.bm-pop-head .mark-read {
  font-size: 12.5px;
  color: var(--bm-primary);
  font-weight: 700;
  cursor: pointer;
  background: none;
  border: 0;
}

.bm-notif-item {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--bm-border);
  cursor: pointer;
  transition: background 0.15s;
}
.bm-notif-item:last-child {
  border-bottom: 0;
}
.bm-notif-item:hover {
  background: var(--bm-surface);
}
.bm-notif-item.unread .bm-notif-icon {
  background: var(--bm-primary);
  color: #fff;
}

.bm-notif-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: var(--bm-primary-soft);
  color: var(--bm-primary-dark);
  font-size: 15px;
}

.bm-notif-text p {
  margin: 0 0 3px;
  font-size: 13.5px;
  line-height: 1.4;
}
.bm-notif-text span {
  font-size: 12px;
  color: var(--bm-muted);
}
.bm-notif-text b {
  font-weight: 700;
}

.bm-pop-foot {
  padding: 11px;
  text-align: center;
}
.bm-pop-foot a {
  font-size: 13px;
  font-weight: 700;
  color: var(--bm-primary);
}

.bm-profile-menu {
  width: 250px;
  padding: 6px;
}

.bm-profile-head {
  padding: 12px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bm-profile-head .fw-semibold,
.bm-profile-head .fw-semibold-14 {
  font-weight: 700;
  font-size: 14px;
}
.bm-profile-head .text-muted,
.bm-profile-head .text-muted-13 {
  color: var(--bm-muted);
  font-size: 12.5px;
}

.bm-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--bm-ink);
}
.bm-menu-item i {
  font-size: 16px;
  color: var(--bm-muted);
  width: 18px;
}
.bm-menu-item:hover {
  background: var(--bm-surface);
}
.bm-menu-item.danger {
  color: var(--bm-danger);
}
.bm-menu-item.danger i {
  color: var(--bm-danger);
}

.bm-divider {
  height: 1px;
  background: var(--bm-border);
  margin: 6px 4px;
}

.bm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 25, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s;
  z-index: 1400;
}
.bm-overlay.open {
  opacity: 1;
  visibility: visible;
}

.bm-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 75%;
  max-width: 340px;
  background: var(--bm-bg);
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  box-shadow: 20px 0 50px rgba(0, 0, 0, 0.15);
}
.bm-drawer.open {
  transform: translateX(0);
}

.bm-drawer-head {
  padding: 18px 18px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--bm-border);
}

.bm-drawer-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--bm-border);
  background: var(--bm-bg);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.bm-drawer-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--bm-border);
}
.bm-drawer-profile img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}
.bm-drawer-profile .name {
  font-weight: 700;
  font-size: 15px;
}
.bm-drawer-profile .email {
  font-size: 12.5px;
  color: var(--bm-muted);
}

.bm-drawer-search {
  margin: 14px 18px 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bm-surface);
  border: 1px solid var(--bm-border);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--bm-muted);
}
.bm-drawer-search input {
  border: 0;
  background: transparent;
  outline: 0;
  width: 100%;
  font-family: inherit;
  font-size: 14px;
}

.bm-drawer-nav {
  list-style: none;
  margin: 8px 0;
  padding: 0 10px;
  overflow-y: auto;
  flex: 1;
}
.bm-drawer-nav li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  color: var(--bm-ink);
}
.bm-drawer-nav li a i {
  font-size: 18px;
  color: var(--bm-muted);
  width: 20px;
  text-align: center;
}
.bm-drawer-nav li a.active {
  background: var(--bm-primary-soft);
  color: var(--bm-primary-dark);
}
.bm-drawer-nav li a.active i {
  color: var(--bm-primary-dark);
}
.bm-drawer-nav li a:active {
  background: var(--bm-surface);
}

.bm-drawer-section-label {
  padding: 14px 12px 6px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bm-muted);
}

.bm-drawer-foot {
  padding: 14px 18px 20px;
  border-top: 1px solid var(--bm-border);
}
.bm-drawer-foot a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--bm-danger);
  padding: 10px 4px;
}/*# sourceMappingURL=main.css.map */