.page .mobile-top-row {
    background-color: #f7f7f7;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 56px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.page .navbar-toggler {
    padding: 0.5rem;
    border: none;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal 背景 */
.page .modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    animation: fadeIn 0.3s ease-out;
}

/* 側邊欄 */
.page .sliding-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 280px;
    background-color: white;
    z-index: 1051;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease-out;
}

.page .sliding-sidebar.show {
    transform: translateX(0);
}

/* 動畫效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.page .mobile-main {
    margin-top: 56px;
    height: calc(100vh - 56px);
    overflow-y: auto;
}

/* 移除不需要的樣式 */ 