/* assets/css/sidebar.css - BEM 风格 */

/* 侧边栏的主要容器 */
.sidebar {
    background-color: #f4f4f4;
    border-left: 1px solid #ddd;
    padding: 20px;
}

/* 侧边栏内部容器 */
.sidebar__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 侧边栏小工具 */
.sidebar__widget {
    background-color: #fff;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sidebar__widget-title {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

/* 侧边栏中的链接 */
.sidebar__link {
    text-decoration: none;
    color: #0073e6;
}

.sidebar__link:hover {
    text-decoration: underline;
}

/* 侧边栏小工具底部 */
.sidebar__widget-footer {
    font-size: 0.9rem;
    color: #777;
    text-align: center;
    margin-top: 10px;
}
