/**
 * 左侧边栏背景高度固定
 * 使左侧边栏的白色背景延伸到屏幕底部
 * 添加圆角边框
 */

/* 左侧边栏卡片 */
#leftSidebar .card {
    min-height: 100vh !important; /* 固定最小高度为整个视口高度 */
    height: 100vh !important; /* 固定高度为整个视口高度 */
    background-color: #ffffff !important; /* 确保背景色为白色 */
    position: relative !important; /* 设置相对定位 */
    border-radius: 10px !important; /* 添加圆角 */
}

/* 左侧边栏卡片内容区域 */
#leftSidebar .card-body {
    background-color: #ffffff !important; /* 确保背景色为白色 */
    height: 100% !important; /* 占满卡片高度 */
    border-radius: 10px !important; /* 添加圆角 */
} 