/* =====================
   RESET & SAFETY
===================== */
.dashboard, .dashboard * {
  box-sizing: border-box;
}

/* =====================
   DASHBOARD
===================== */
.dashboard{
  text-align:center;
  width:100%;
}

.dash-title{
  font-size:28px;
  margin-bottom:18px;
  font-weight:900;
  letter-spacing:.3px;
}

.dash-section{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin:24px 0;
}

.dash-item{
  padding:16px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.12);
  cursor:pointer;
  font-weight:700;
  font-size:16px;
  transition:.2s ease;
  background:linear-gradient(#fff,#fafafa);
  box-shadow:0 2px 6px rgba(0,0,0,.05);
}

.dash-item:hover{
  background:linear-gradient(#f5f5f5,#fff);
  transform:translateY(-2px);
  box-shadow:0 6px 12px rgba(0,0,0,.08);
}

.dash-buttons{
  display:flex;
  gap:12px;
  justify-content:center;
  margin-top:24px;
  flex-wrap:wrap;
}

/* =====================
   TOPBAR FIX
===================== */
.topbar{
  position: sticky;
  top: 0;
  z-index: 9999;
}

/* =====================
   MODAL CLICK FIX
===================== */
.backdrop{
  pointer-events:none;
}
.backdrop.open{
  pointer-events:auto;
}
.backdrop{ display:none !important; }
.backdrop.open{ display:flex !important; }
