/* -------------------------------------------------------
   FileBrowser 深度去品牌化样式 (包含后台和分享页面)
------------------------------------------------------- */

/* 1. 核心大招：隐藏所有标有“版权/制作人员”的区域 (专门针对分享页面) */
.credits {
    display: none !important;
}

/* 2. 补刀：隐藏所有指向 GitHub 和官网的链接 */
a[href*="github.com/filebrowser"],
a[href*="filebrowser.org"] {
    display: none !important;
}

/* 3. 隐藏侧边栏顶部的 Logo 区域 (针对后台) */
.sidebar > div:first-child {
    display: none !important;
}

/* 4. 隐藏页面底部或角落可能出现的版本号文字 */
span[class*="version"],
div[class*="version"] {
    display: none !important;
}