:root {
  --primary: #2563eb;         /* Royal Blue */
  --bg: linear-gradient(180deg, #eef3fb 0%, #d9e6f6 100%);
  --sidebar: #1e293b;         /* Dark Slate */
  --glass: rgba(255, 255, 255, 0.7);
  --text: #0f172a;
  --muted: #64748b;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  margin: 0;
  min-height: 100vh;
  overflow-y: auto; /* enable normal scrolling */
}
/* ========================= */
/* SIDEBAR (hidden on mobile) */
/* ========================= */

.sidebar{
  display:none;
}
/* ================= MOBILE BOTTOM NAV ================= */

@media (max-width: 1024px) {
  .main-content {
    padding: 10px 15px 75px 15px;
  }

  .bottom-nav {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65px;
    background: white;
    border-top: 1px solid #ddd;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
  }

  .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    color: #888;
    cursor: pointer;
    transition: 0.2s;
  }

  .nav-item svg {
    width: 22px;
    height: 22px;
    margin-bottom: 4px;
    stroke: #888;
  }

  .nav-item.active {
    color: var(--primary);
  }

  .nav-item.active svg {
    stroke: var(--primary);
  }

  .bottom-nav .highlight-btn {
    font-weight: 600;
    font-size: 12.5px;
    color: white;
    background: var(--primary);
    padding: 4px 9px;
    border-radius: 10px;
    transform: translateY(-4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    transition: 0.2s;
  }

  .bottom-nav .highlight-btn svg {
    stroke: white;
    width: 20px;
    height: 20px;
  }

  .bottom-nav .highlight-btn:hover {
    background: #1d4ed8;
    transform: translateY(-6px);
  }
}

@media (min-width: 1025px) {
  .bottom-nav {
    display: none !important;
  }
}


.page {
  display: none;
}

.page.active {
  display: block;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 50px;

  display: flex;
  justify-content: space-between; /* ← important */
  align-items: center;

  padding: 12px 16px;
  z-index: 1000;

  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-bottom: 1px solid #eee;
}

