/* proxy.css */
/* 1. 隐藏页脚版权信息，消除最明显的特征 */
/* 隐藏包含“设计与开发由”文字的 div */
.semi-layout-footer .text-sm:has(a[href*="github.com/QuantumNous/new-api"]) {
    display: none !important;
}
/* 隐藏父容器下的第二个元素（即文档按钮） */
.flex.flex-row.gap-4.justify-center > button:nth-child(2) {
    display: none !important;
}

/* 2. 修改全局主色调 (例如改为深色系) */
:root {
    --primary-color: #2c3e50 !important; /* 替换原有的蓝色 */
}

/* 3. 增加背景毛玻璃效果或自定义背景 */
body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%) !important;
}

/* 4. 隐藏特定的系统公告或通知图标（如果有） */
.ui.menu .item i.announcement {
    display: none !important;
}


/* 1. 让输入框内的原始文字透明 */
.semi-input[value="http://localhost:3000"] {
    color: transparent !important;
}

/* 2. 在输入框所在容器前插入新文字 */
.semi-input-wrapper:has(input[value="http://localhost:3000"])::before {
    content: "http://www.5fn.cn"; /* 这里写你想显示的内容 */
    position: absolute;
    left: 16px; /* 根据原 UI 间距微调 */
    color: #1c1f23; /* 恢复文字颜色 */
    font-size: 14px;
    pointer-events: none; /* 确保点击能穿透到输入框 */
    z-index: 1;
}
