/* @🍮 状态栏毛玻璃魔法及列表专属样式 */
.glass-preview-box {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    display: flex; justify-content: center; align-items: center;
    color: #fff; padding: 20px; text-align: center; font-size: 16px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    box-sizing: border-box; word-break: break-all;
}
.sb-list-item {
    display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 12px 15px; font-size: 14px; color: #333; cursor: pointer; box-shadow: 0 1px 3px rgba(0,0,0,0.02); transition: all 0.2s;
}
.sb-list-item.selected {
    border: 1px solid #07c160; background: #e8f5e9;
}

/* @🍮 状态栏运行态纯净毛玻璃视图专属排版 */
.statusbar-glass-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.15); /* 极度透明底色 */
    backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); /* 纯粹的强效毛玻璃 */
    z-index: 135; display: none; flex-direction: column;
    opacity: 0; transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.statusbar-glass-overlay.active { display: flex; opacity: 1; }
.sb-glass-content {
    flex: 1; display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none; -ms-overflow-style: none; scroll-behavior: smooth;
}
.sb-glass-content::-webkit-scrollbar { display: none; }
.sb-glass-slide {
    width: 100%; flex-shrink: 0; scroll-snap-align: center;
    display: flex; justify-content: center; align-items: center;
    padding: 30px; box-sizing: border-box; overflow-y: auto;
}
.sb-glass-footer {
    height: 120px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; flex-shrink: 0; padding-bottom: calc(10px + env(safe-area-inset-bottom));
}
.sb-glass-dots { display: flex; gap: 10px; }
.sb-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,0.15); transition: background 0.3s; }
.sb-dot.active { background: #333; transform: scale(1.2); }
.sb-glass-close { width: 44px; height: 44px; fill: #333; cursor: pointer; background: rgba(255,255,255,0.5); border-radius: 50%; padding: 10px; box-sizing: border-box; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: transform 0.2s; }
.sb-glass-close:active { transform: scale(0.9); }

/* 覆盖预览框样式 */
.glass-preview-box { position: relative !important; height: auto !important; min-height: 100px !important; background: #ffffff !important; }

/* @🍮 全局日志外部独立极简灰色样式 */
.pudding-log-outer {
    display: none;
    width: 100%;
    margin-bottom: 10px;
}
.pudding-log-secret {
    font-size: 12px;
    color: #888;
    background: #f0f0f0;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: left;
    line-height: 1.4;
    white-space: pre-wrap;
    word-break: break-all;
    display: inline-block;
    max-width: 85%;
    box-sizing: border-box;
}
.message-row.mine .pudding-log-outer.log-cot,
.message-row.mine .pudding-log-outer.log-sb { text-align: right; }
.message-row.theirs .pudding-log-outer.log-cot,
.message-row.theirs .pudding-log-outer.log-sb { text-align: left; }

.pudding-log-outer.log-action { text-align: center; }
.pudding-log-outer.log-action .pudding-log-secret { background: transparent; text-align: center; color: #999; padding: 0; }

.pudding-log-title { font-weight: bold; margin-bottom: 4px; color: #666; }
