[v-cloak] {
    display: none !important;
}

body {
    min-height: 100vh;
    background: linear-gradient(rgba(255,255,255,0.3)),url('https://sanyue.ink/G9cBgNYWkAAyW1s.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.2);
    /*backdrop-filter: blur(1px) saturate(180%);*/
    border: 1px solid rgba(255, 255, 255, 0);
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.4);
}

.card-hover {
    transition: all 0.5s ease;
}

    .card-hover:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.07);
    }

/* 核心：确保卡片高度不互相联动，解决点击左边右边多出一截的问题 */
.grid {
    display: grid !important;
    align-items: start !important;
}

.gauge-container {
    width: 110px;
    height: 110px;
}

.progress-ring {
    transition: stroke-dashoffset 1s ease, stroke 0.4s ease;
}

.progress-bar-thin {
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.05);
}

/* 网卡详情区域控制 */
.nic-detail-container {
    max-height: 120px;
    overflow-y: auto;
}

    .nic-detail-container::-webkit-scrollbar {
        width: 2px;
    }

    .nic-detail-container::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.1);
    }

.offline-mode {
    filter: grayscale(1) opacity(0.5);
    pointer-events: none;
}
