/* My LB App Portal (client) */

.mlb-topbar{
  position:sticky;
  top:0;
  z-index:10;
  background:#fff;
  border-bottom:1px solid #eee;
}

.mlb-topbar-inner{
  max-width:1060px;
  margin:0 auto;
  padding:12px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  box-sizing:border-box;
}

.mlb-brand{
  display:flex;
  align-items:center;
  gap:10px;
}

.mlb-brand img{
  height:28px;
  width:auto;
  display:block;
}

.mlb-brand-title{
  font-weight:800;
  letter-spacing:0.2px;
}

.mlb-brand-sub{
  font-size:12px;
  color:#6b7280;
  margin-top:1px;
}

.mlb-user{
  font-size:13px;
  color:#111827;
  display:flex;
  align-items:center;
  gap:10px;
  white-space:nowrap;
}

.mlb-user .pill{
  background:#f3f4f6;
  border:1px solid #e5e7eb;
  border-radius:999px;
  padding:6px 10px;
}

.mlb-content{
  max-width:1060px;
  width:100%;
  margin:0 auto;
  padding:18px 14px 90px 14px;
  box-sizing:border-box;
}

.mlb-bottom-nav{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:30;
  background:#fff;
  border-top:1px solid #eee;
}

.mlb-bottom-nav .inner{
  max-width:1060px;
  margin:0 auto;
  padding:10px 14px;
  display:flex;
  gap:10px;
  box-sizing:border-box;
}

.mlb-bottom-nav a{
  flex:1;
  min-width:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
  text-decoration:none;
  color:#374151;
  font-size:11.5px;
}

.mlb-bottom-nav svg{
  width:22px;
  height:22px;
  display:block;
}

.mlb-bottom-nav a.active{
  color:#E6007E;
}

.statusBadge{
  display:inline-flex;
  align-items:center;
  padding:4px 8px;
  border-radius:999px;
  font-size:12px;
  border:1px solid #e5e7eb;
  background:#f9fafb;
  color:#111827;
}

.statusBadge.ok{
  background:#ecfdf5;
  border-color:#a7f3d0;
  color:#065f46;
}

.statusBadge.warn{
  background:#fffbeb;
  border-color:#fde68a;
  color:#92400e;
}

.statusBadge.bad{
  background:#fee2e2;
  border-color:#fecaca;
  color:#7f1d1d;
}
