body { 
    background-color: #09090b; 
    color: #e4e4e7; 
    font-size: 13px; 
}

.sharp-card { 
    background-color: #141417; 
    border: 1px solid #27272a; 
}

/* 固定表格布局 */
.fixed-table { 
    width: 100%; 
    table-layout: fixed; 
    border-collapse: collapse; 
}
.fixed-table th {
    text-align: left;
    font-size: 12px;
    color: #71717a;
    padding: 8px 10px;
    border-bottom: 1px solid #27272a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fixed-table td {
    padding: 8px 10px;
    border-bottom: 1px solid #27272a;
    vertical-align: middle;
    font-size: 12px;
    overflow: hidden; 
}
.fixed-table tr:hover { 
    background-color: rgba(255,255,255,0.03); 
}

/* 骨架屏动画 */
.skeleton {
    background: linear-gradient(90deg, #1f1f22 25%, #2a2a2d 37%, #1f1f22 63%);
    background-size: 400% 100%;
    animation: skeleton-loading 1.4s ease infinite;
    border-radius: 2px;
}
@keyframes skeleton-loading {
    0% { background-position: 100% 50%; }
    100% { background-position: 0 50%; }
}

/* 初始隐藏 App 防止乱码 */
#app { display: none; }

/* 静态加载层 */
#init-loader {
    position: fixed;
    inset: 0;
    background-color: #09090b;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* 隐藏滚动条 */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: #09090b; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 2px; }
