/* ======================
   APP HEADER
====================== */
.app-header {
  position: sticky;
  top: 0;
  height: 56px;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  z-index: 1000;
}

.app-header .logo{
  font-size:20px;
  font-weight:700;
  color:#ff3d00;
}

.app-header .left,
.app-header .right{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:18px;
}

.logo {
  color: #ff3d00;
  font-weight: 700;
  font-size: 18px;
}

/* ======================
   BOTTOM NAV
====================== */
.bottom-nav{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  height:56px;
  background:#111;
  color:#fff;
  display:flex;
  justify-content:space-around;
  align-items:center;
  font-size:12px;
  z-index:1000;
}

.bottom-nav div{
  text-align:center;
  cursor:pointer;
}

.bottom-nav i{
  display:block;
  font-size:18px;
}
