/* 滾動時的 Sticky 導覽列樣式 */
.navbar.sticky {
    position: fixed;
    top: 0px;
    left: 5px;
    right: 5px;
    width: calc(100%-10px);
    /* 使用 rgba 設定透明度 60% */
    background-color: rgba(255, 242, 215, 0.4); /* 替換成您網站的顏色 */
    z-index: 1000;
    backdrop-filter: blur(5px); /* 可選：增加毛玻璃效果 */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
/*    transform: translateY(-34px);*/
    transform: translateY(-34px);
}
