/* ======== 共用样式：底部免责声明 ======== */
.disclaimer {
    text-align: center;
    font-size: 11px;
    color: #a8b2bd;
    line-height: 1.7;
    padding: 8px 16px 12px;
    letter-spacing: .3px;
    user-select: none;
    -webkit-user-select: none;
}
/* 全屏页面（登录/管理员登录）：固定在视口底部 */
.disclaimer-fixed {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    pointer-events: none;
}
