/* 折叠内容基础样式 */
.muwebsite-collapsed-content {
    position: relative;
}

/* 渐变遮罩效果（通过 JS 或内联样式控制显示，此处定义基本样式） */
.muwebsite-collapsed-content.muwebsite-has-gradient::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #ffffff);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* 展开状态下隐藏遮罩 */
.muwebsite-collapsed-content.muwebsite-expanded::after {
    opacity: 0;
}

/* 按钮容器 */
.muwebsite-collapse-btn-wrapper {
    margin-top: 15px;
}

/* 按钮基本样式 */
.muwebsite-collapse-btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.muwebsite-collapse-btn:hover {
    background-color: #e0e0e0;
}