/* Blur sensitive values */
.privacy-mode .privacy-sensitive,
.privacy-mode .fi-wi-stats-overview-stat-value {
    filter: blur(8px);
    user-select: none;
    transition: filter 0.3s ease;
}

/* Toggle button */
.privacy-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

/* Hover effect */
.privacy-toggle:hover {
    background-color: rgba(0, 0, 0, 0.06);
    transform: scale(1.05);
}

.dark .privacy-toggle:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

/* Icon */
.privacy-toggle svg {
    width: 20px;
    height: 20px;
    color: rgb(107, 114, 128);
}

/* Active state glow */
.privacy-mode .privacy-toggle {
    background-color: rgba(239, 68, 68, 0.1);
}
