/* ========================================
   Kavo — Instant Navigation Progress Bar
   Pure CSS, no external dependency.
   Matches brand color #0F766E (teal-700).
   ======================================== */

#kavo-instant-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    opacity: 0;
    background: linear-gradient(90deg, #0F766E, #14b8a6);
    box-shadow: 0 0 8px rgba(15, 118, 110, 0.5);
    z-index: 99999;
    pointer-events: none;
    will-change: width, opacity;
}
