
/* ------------------------------
   DESKTOP & TABLET VIEW (≥768px)
------------------------------ */
@media screen and (min-width: 768px) {
  .toc-progress {
    position: fixed;
    top: 20%;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1000;
    align-items: center;
  }
}

/* ------------------------------
   MOBILE VIEW (≤767px)
------------------------------ */
@media screen and (max-width: 1200px) {
  .toc-progress {
    position: fixed !important;
    bottom: 10px !important;
    top: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    flex-direction: row !important;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 12px;
    border-radius: 12px;
    gap: 10px;
    z-index: 9999;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
  }

  .bullet {
    width: 30px !important;
    height: 30px !important;
    font-size: 14px !important;
  }

  .bullet i {
    font-size: 14px !important;
  }

  body {
    font-size: 16px !important;
    line-height: 1.5 !important;
  }

  h2, h3 {
    font-size: 1.2em !important;
  }

  .section-wrapper {
    padding: 0 14px !important;
  }
}