
/* =========================
   OFFCANVAS BASE
========================= */

.mobile-nav {
  background: #fff;
}

/* =========================
   HEADER
========================= */

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: #fff;
  border-bottom: 1px solid #E5E7EB;
}

.mobile-nav-title {
  font-weight: 600;
  font-size: 1.6rem;
  color: #111827;
}

.mobile-nav-title span {
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: #111827;
}

#mobileBack {
  color: #0056FF;
  font-weight: 500;
  background: none;
  border: none;
  text-decoration: none !important;
}

/* =========================
   LIST ITEM
========================= */

.mobile-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #F1F5F9;
  color: #111827;

  transition: background 0.15s ease, transform 0.1s ease;
}

/* tap feedback (mobile UX) */
.mobile-item:active {
  background: #EEF3FF;
  transform: scale(0.995);
}


/* =========================
   LINKS
========================= */

.mobile-link {
  flex: 1;
  text-decoration: none;
  color: #111827;
}

/* =========================
   ARROW / OPEN INDICATOR
========================= */

.mobile-open {
  font-size: 20px;
  padding-left: 12px;
  color: #0056FF;
  opacity: 0.75;
  cursor: pointer;

  /* fontos: ne legyen külön click target */
  pointer-events: none;
}

/* =========================
   OPTIONAL ACTIVE STATE
   (ha később bővíted JS-sel)
========================= */

.mobile-item.active {
  background: #EEF3FF;
}

/* =========================
   SCROLL AREA
========================= */

.mobile-nav-body {
  height: calc(100vh - 60px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* =========================
   OPTIONAL: subtle divider enhancement
========================= */

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


.mobile-item.is-folder {
  background: #F8FAFF;
  border-left: 3px solid #0056FF;
  font-weight: 600;
  font-size: 2.4rem;
  letter-spacing: -0.5px;
  line-height: 1.2;
/*  font-family:"Poppins", sans-serif; */
}

.mobile-item.is-link {
  border-left: 3px solid #e8e9ea;
  background: #fff;
  font-weight: 500;
  font-size:1.8rem;
}
